diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/locations.yml | 13 | ||||
-rw-r--r-- | test/models/location_test.rb | 7 |
2 files changed, 20 insertions, 0 deletions
diff --git a/test/fixtures/locations.yml b/test/fixtures/locations.yml new file mode 100644 index 0000000..6a7ba8a --- /dev/null +++ b/test/fixtures/locations.yml @@ -0,0 +1,13 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + gid: MyString + name: MyString + description: MyText + whatnot: + +two: + gid: MyString + name: MyString + description: MyText + whatnot: diff --git a/test/models/location_test.rb b/test/models/location_test.rb new file mode 100644 index 0000000..3c813e8 --- /dev/null +++ b/test/models/location_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class LocationTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end |