This commit is contained in:
2015-09-12 15:37:05 -05:00
commit cb7e47a466
77 changed files with 1374 additions and 0 deletions

0
test/models/.keep Normal file
View File

View File

@ -0,0 +1,13 @@
require 'test_helper'
class PersonTest < ActiveSupport::TestCase
def test_sanity
assert Person
end
def test_parents
parents = Person.just_parents
assert parents.count > 1, "Did not find more than one parent"
end
end