Skip to content

Instantly share code, notes, and snippets.

@shankardevy
Created July 14, 2017 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shankardevy/adb5b172f55b5ba8569e36382bc6f6b5 to your computer and use it in GitHub Desktop.
Save shankardevy/adb5b172f55b5ba8569e36382bc6f6b5 to your computer and use it in GitHub Desktop.
defmodule Mango.CatalogTest do
use ExUnit.Case
alias Mango.Catalog
alias Mango.Catalog.Product
test "list_products/0 returns all products" do
[p1 = %Product{}, p2 = %Product{}] = Catalog.list_products
assert p1.name == "Tomato"
assert p2.name == "Apple"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment