diff options
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/admin_test.rb | 10 | ||||
-rw-r--r-- | test/unit/location_test.rb | 10 | ||||
-rw-r--r-- | test/unit/person_test.rb | 10 |
3 files changed, 30 insertions, 0 deletions
diff --git a/test/unit/admin_test.rb b/test/unit/admin_test.rb new file mode 100644 index 0000000..20b31b1 --- /dev/null +++ b/test/unit/admin_test.rb @@ -0,0 +1,10 @@ +require File.dirname(__FILE__) + '/../test_helper' + +class AdminTest < Test::Unit::TestCase + fixtures :admin + + # Replace this with your real tests. + def test_truth + assert true + end +end diff --git a/test/unit/location_test.rb b/test/unit/location_test.rb new file mode 100644 index 0000000..c69b7a1 --- /dev/null +++ b/test/unit/location_test.rb @@ -0,0 +1,10 @@ +require File.dirname(__FILE__) + '/../test_helper' + +class LocationTest < Test::Unit::TestCase + fixtures :location + + # Replace this with your real tests. + def test_truth + assert true + end +end diff --git a/test/unit/person_test.rb b/test/unit/person_test.rb new file mode 100644 index 0000000..3b9434b --- /dev/null +++ b/test/unit/person_test.rb @@ -0,0 +1,10 @@ +require File.dirname(__FILE__) + '/../test_helper' + +class PersonTest < Test::Unit::TestCase + fixtures :person + + # Replace this with your real tests. + def test_truth + assert true + end +end |