Packages

No man has ever lived that had enough of children’s gratitude or woman’s love

Current section

Files

Jump to
family test family_test.exs
Raw

test/family_test.exs

defmodule FamilyTest do
use ExUnit.Case
doctest Family
test "count_individuals/1" do
assert Family.count_individuals("priv/test.ged") == 3
end
test "get_individual_name/2" do
assert Family.get_individual_name("priv/test.ged", "I3") == "James /Smith/"
end
end