sms-pager/test/models/person_test.rb

14 lines
239 B
Ruby
Raw Normal View History

2015-09-12 15:37:05 -05:00
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