我正在尝试@status
根据块的性能更新对象上的实例变量。该块还调用另一个类。
def run
@entries.keep_if { |i| valid_entry?(i) }.each do |e|
begin
unique_id = get_uniqueid e
cdr_record = Cdr.find_by_uniqueid(unique_id).first
recording = cdr_record.nil? ? NullAsteriskRecording.new : AsteriskRecording.new(cdr_record, e)
recording.set_attributes
recording.import
rescue Exception => e
fail_status
end
end
end
fail_status
是将实例变量更新为的私有方法:failed
。通过破坏其他一些东西,我基本上已经验证了这段代码是有效的,但我也想要一个适当的测试。目前,我有以下内容:
context "in which an exception is thrown" do
before do
@recording = double("asterisk_recording")
@recording.stub(:import).and_raise("error")
end
it "should set #status to :failed" do
# pending "Update instance variable in rescue block(s) of #run"
subject.run
subject.status.should eq :failed
end
end
但测试总是失败。该rescue
块永远不会被评估(我检查了一个puts
在我在语句中硬编码时将被评估的raise
语句)。我在这里使用了double
错误的功能吗?或者我是通过排除异常来做自己,所以该rescue
块永远不会运行?