rspec - 错误的参数个数(0表示1..2)

时间:2013-08-29 22:35:53

标签: ruby rspec

鉴于此代码:

class Game

  def self.game_board
    return [[][][]]
  end
  def self.empty_output
    '_|_|_'+
    '_|_|_'+
    ' | |'
  end
end

和这些测试:

describe 'It should display a grid' do
  it 'should have empty output' do
    Game.empty_output.should ==
    '_|_|_'+
    '_|_|_'+
    ' | |'
  end
  it 'should have an empty array for the game ' do
    Game.game_board.should ==
    [[][][]]
  end
end

为什么测试失败,尝试返回错误

的数组数组
.F

Failures:

  1) "It should display a grid should be empty
     Failure/Error: return [[][][]]
     ArgumentError:
       wrong number of arguments (0 for 1..2)
     # ./checkers_rspec.rb:4:in `[]'
     # ./checkers_rspec.rb:4:in `game_board'
     # ./checkers_rspec.rb:24:in `block (2 levels) in <top (required)>'

Finished in 0.00121 seconds
2 examples, 1 failure

1 个答案:

答案 0 :(得分:0)

[[][][]] should hae been [[],[],[]] in both cases.