Slide 134
Slide 134 text
describe "end to end acceptance test", :type => :request do
...
it "marks the board" do
...
@application.mark_board(1,0)
@application.shows_board(
[
['X','X',' '],
['O','O',' '],
[' ',' ',' ']
]
)
@application.mark_board(0,2)
@application.shows_board(
[
['X','X','X'],
['O','O',' '],
[' ',' ',' ']
]
)
@application.shows_player1_won
end
end
Wednesday, May 16, 12