我正在使用 rspec 3.0.0.beta1。我必须测试一种产生的方法self
:
class Test
def initialize
yield self if block_given?
end
end
这是一个成功的测试:
describe Test do
context 'giving a block with one argument' do
it 'yields self'
expect { |b| described_class.new &b }.to yield_with_args described_class
end
end
end
但它只测试对象类,不测试身份self
。
这是我写的最接近(失败)的测试:
describe Test do
context 'giving a block with one argument' do
it 'yields itself'
instance = nil
expect { |b|
instance = described_class.new &b
}.to yield_with_args instance
end
end
end
它确实失败了,因为在评估最后一个实例出现时它是nil
,因此它与块评估内的实例不匹配。