我是一个 RSpec 新手,但我真的很喜欢编写测试是多么容易,并且随着我学习 RSpec 的新功能,我会不断地重构它们以使其更干净。所以,最初,我有以下内容:
describe Account do
context "when new" do
let(:account) { Account.new }
subject { account }
it "should have account attributes" do
subject.account_attributes.should_not be_nil
end
end
end
然后我了解了该its
方法,因此我尝试将其重写为:
describe Account do
context "when new" do
let(:account) { Account.new }
subject { account }
its(:account_attributes, "should not be nil") do
should_not be_nil
end
end
end
由于its
不接受 2 个参数而失败,但删除消息效果很好。问题是,如果测试失败,失败示例部分下的消息只会显示
rspec ./spec/models/account_spec.rb:23 # Account when new account_attributes
这并没有太大帮助。
那么,有没有办法将消息传递给its
,或者更好的是,让它自动输出一个理智的消息?