This commit is contained in:
root
2016-08-19 18:03:00 +09:00
parent 46be317459
commit a289782424
38 changed files with 1126 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
require 'test_helper'
class SampleControllerTest < ActionController::TestCase
# test "the truth" do
# assert true
# end
end

11
test/fixtures/users.yml vendored Normal file
View File

@@ -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

7
test/models/user_test.rb Normal file
View File

@@ -0,0 +1,7 @@
require 'test_helper'
class UserTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end