0
我想我打了RSPEC錯誤的錯誤,而只是想它第一次......RSPEC錯誤帶班分析器(?)
在下面的例子中,RSPEC是名敏感類:與'解析器'在parser.rb文件測試失敗,但只是重命名它'FooParser'使它的工作。
require_relative './parser.rb'
describe Parser do
it 'should do the trick' do
@parser = Parser.new "test.pas"
end
end
會抱怨我的構造函數的參數,甚至有一個簡單的代碼是這樣的:
class Parser
def initialize arg
end
end
的RSPEC錯誤日誌看起來是這樣的:
1) Parser should do the trick
Failure/Error: @parser = Parser.new "test.pas"
ArgumentError:
wrong number of arguments(1 for 0)
給我們一個堆棧跟蹤和確切的錯誤消息或它沒有發生。 – 2012-02-07 18:00:55
如果RSpec錯誤已被報告,那麼這裏不是問的地方。 – 2012-02-07 20:05:35