rspec-expectations

    1熱度

    1回答

    我在黃瓜框架中使用rspec期望值,並且在步驟定義級別使用時看起來很好。 我已經配置了我的env.rb文件有: require 'rspec/expectations' World(RSpec::Matchers) 我現在已經注意到這樣的問題:如果我試圖用這裏面的一個步驟中使用對象的方法中的RSpec那我就失敗了。 E.g. Steps_definition.rb service

    1熱度

    1回答

    因此,假設我正在編寫一個API來製作美味的糖霜蛋糕。這些都很好,並且有文檔記錄,但偶爾會出現一個錯誤,或者用戶正在通過IRB探索圖書館,並在原型開發時發現了一個變量。 這是我通常指示呼叫者一個參數不能是零/有其他方面的限制: # Cake.rb def make_cake(cake_type, *arguments) raise "cake_type required!" unless

    2熱度

    1回答

    我使用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==

    4熱度

    3回答

    我使用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