From b6ca062670b342344df08b53fb216db619ef42bc Mon Sep 17 00:00:00 2001 From: Nicolas Braud-Santoni Date: Sun, 7 Aug 2016 16:39:42 +0200 Subject: Import legacy manman source Copied from www.ffgraz.net --- test/unit/admin_test.rb | 10 ++++++++++ test/unit/location_test.rb | 10 ++++++++++ test/unit/person_test.rb | 10 ++++++++++ 3 files changed, 30 insertions(+) create mode 100644 test/unit/admin_test.rb create mode 100644 test/unit/location_test.rb create mode 100644 test/unit/person_test.rb (limited to 'test/unit') 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 -- cgit v1.2.1