2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# File 'lib/expectations/state_based_expectation.rb', line 2
def execute
begin
mocha_setup
warn_for_expects do
unless block
self.actual = false
else
self.actual = instance_eval(&block)
end
end
mocha_verify
if expected.expectations_equal_to(actual)
self.extend(Expectations::Results::Fulfilled)
else
self.extend(Expectations::Results::StateBasedFailure)
end
rescue Exception => ex
return self.extend(Expectations::Results::Fulfilled) if expected == ex.class
self.extend(Expectations::Results::Error)
self.exception = ex
self.message = "expected: <#{expected.inspect}> got: <#{ex.class.inspect}>" if expected.is_a?(Class) && expected < StandardError
return self
ensure
mocha_teardown
end
end
|