我在黃瓜框架中使用rspec期望值,並且在步驟定義級別使用時看起來很好。 我已經配置了我的env.rb文件有: require 'rspec/expectations'
World(RSpec::Matchers)
我現在已經注意到這樣的問題:如果我試圖用這裏面的一個步驟中使用對象的方法中的RSpec那我就失敗了。 E.g.
Steps_definition.rb
service
我使用rspec 2.4.0和cucumber 0.6.4。我運行一個簡單的場景(對這個問題的緣故): Scenario: Simple Test
When I test something
步驟定義: require 'rspec'
require 'rspec/expectations'
When /^I test something$/ do
result = (1==
我使用cucumber與capybara 我有幾個類似的錯誤。 對於步驟: Then /I should see movies of rating 'PG' or 'R'/ do
page.body.should match(/<td>PG<\/td>/)
page.body.should match(/<td>R<\/td>/)
end
黃瓜錯誤: undefined