Created
February 13, 2014 21:27
-
-
Save adamcooper/8984196 to your computer and use it in GitHub Desktop.
Follow the instructions here: http://codingdojo.org/cgi-bin/wiki.pl?KataTennis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TennisGame | |
def player_one_scores | |
end | |
def player_two_scores | |
end | |
def score | |
"Love All" | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require_relative '03_tennis_kata' | |
require 'minitest/autorun' | |
describe TennisGame do | |
it "score the start of the game" do | |
game = TennisGame.new | |
game.score.must_equal "Love All" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment