0
創建主題helper方法在rpsec 2.12我預計這個輔助方法定義的工作:如何Rspec2
module X
private
def build_them(type)
puts 'Catching the star'
end
end
context 'public/private instance methods' do
subject{ Class.new { extend(::X) } }
def subject.build(type)
puts "Throwing a star"
build_them(type)
end
it{ should respond_to :build}
end
實際的結果是一個失敗的產品規格:
expected #<Class:0x00000002ea5f90> to respond to :build
我期待的例子通過
有關如何正確執行此操作的任何建議?
預期輸出是什麼,實際輸出是多少? – ireddick
@ireddick我添加了實際和預期的結果。 – Hedgehog