diff options
author | David Gay <david@davidgay.org> | 2021-04-21 22:30:32 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-04-21 22:30:32 -0400 |
commit | 62a3d19900247fe26d46f140a568b6ce5996b0f4 (patch) | |
tree | b292f5472df886b7fbe021f95ad8037e446c98a8 /test | |
parent | 3deaa18cfc4103f0cf6dd6de479f07d0d2db1abf (diff) |
Devise setup and config
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/users.yml | 11 | ||||
-rw-r--r-- | test/models/user_test.rb | 7 |
2 files changed, 18 insertions, 0 deletions
diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml new file mode 100644 index 0000000..5181636 --- /dev/null +++ b/test/fixtures/users.yml @@ -0,0 +1,11 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +# This model initially had no columns defined. If you add columns to the +# model remove the '{}' from the fixture names and add the columns immediately +# below each fixture, per the syntax in the comments below +# +one: {} +# column: value +# +two: {} +# column: value diff --git a/test/models/user_test.rb b/test/models/user_test.rb new file mode 100644 index 0000000..5c07f49 --- /dev/null +++ b/test/models/user_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class UserTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end |