diff options
author | DavisLWebb <davislwebb@ymail.com> | 2014-03-06 17:45:22 -0500 |
---|---|---|
committer | DavisLWebb <davislwebb@ymail.com> | 2014-03-06 17:45:22 -0500 |
commit | 0c1299795a492e6296eb8e15bca576ea5139be6b (patch) | |
tree | 3921daf8c26d656b12b20ee22be63c97fa20f6fa /test/models | |
parent | 110d67f433c091a3b739c5bbebe110d963efaa73 (diff) | |
parent | fe7d5ad458b4cabd8fd57b47f81abc56dd8532ad (diff) |
Merge branch 'master' of http://github.com/LukeShu/leaguer
Conflicts:
app/controllers/sessions_controller.rb
app/views/sessions/new.html.erb
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 |