From c798bdbece85093ad683d650ec38db6f89ba7e42 Mon Sep 17 00:00:00 2001 From: xhagrg Date: Thu, 13 Apr 2017 16:27:01 -0500 Subject: [PATCH] Test file. --- test/fixtures/users.yml | 11 +++++++++++ test/models/user_test.rb | 7 +++++++ 2 files changed, 18 insertions(+) create mode 100644 test/fixtures/users.yml create mode 100644 test/models/user_test.rb diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml new file mode 100644 index 0000000..80aed36 --- /dev/null +++ b/test/fixtures/users.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://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..82f61e0 --- /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