0
我所描述的RSpec的如何在RSpec中未描述的示例上顯示失敗?
class Pupil
def initialize(name, dateOfBirth)
@name = name
@dateOfBirth = dateOfBirth
end
def name
@name
end
def ages
#should calculate ages
end
end
describe Pupil do
context do
pupil = Pupil.new("Stanislav Majewski", "1 april 1999")
it "should returns name" do
pupil.name.should eq("Stanislav Majewski")
end
it "should calculates ages" do
#not described
end
end
end
RSpec的類返回:
..
Finished in 0.00203 seconds
2 examples, 0 failures
是否有顯示,該方法沒有描述的故障信息優雅的方式?
如果不通過一個塊'it'在所有它被標記爲您懸而未決。 – 2012-04-08 14:02:30
啊,我忘記了。因此,它'「應該計算時代」'無'do'和塊之後將自動標記測試爲待定。這很容易。我編輯了我的答案。謝謝@FrederickCheung – jefflunt 2012-04-08 14:04:28