diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-03-06 19:47:20 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-03-06 19:47:20 -0500 |
commit | 706392b7c4520382ddd8f827b31205c6b71f5320 (patch) | |
tree | 55444920bb49c5cc104e919737ebcda44eb45321 /test/models | |
parent | eebd00ba4692a6a285c9807705331ab924ce225f (diff) | |
parent | d72452a5965c0df32a13053ae86bcd529fc0fc9e (diff) |
Merge branch 'clean'
Conflicts:
app/controllers/tournaments_controller.rb
app/views/teams/show.html.erb
app/views/tournaments/index.html.erb
config/routes.rb
Diffstat (limited to 'test/models')
-rw-r--r-- | test/models/game_option_test.rb (renamed from test/models/game_attribute_test.rb) | 2 | ||||
-rw-r--r-- | test/models/score_test.rb | 7 | ||||
-rw-r--r-- | test/models/tournament_user_pair_test.rb | 7 |
3 files changed, 15 insertions, 1 deletions
diff --git a/test/models/game_attribute_test.rb b/test/models/game_option_test.rb index 13c6e65..1ae5701 100644 --- a/test/models/game_attribute_test.rb +++ b/test/models/game_option_test.rb @@ -1,6 +1,6 @@ require 'test_helper' -class GameAttributeTest < ActiveSupport::TestCase +class GameOptionTest < ActiveSupport::TestCase # test "the truth" do # assert true # end diff --git a/test/models/score_test.rb b/test/models/score_test.rb new file mode 100644 index 0000000..d38cb0a --- /dev/null +++ b/test/models/score_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class ScoreTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/models/tournament_user_pair_test.rb b/test/models/tournament_user_pair_test.rb new file mode 100644 index 0000000..c8d1789 --- /dev/null +++ b/test/models/tournament_user_pair_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class TournamentUserPairTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end |