-
-
Save mmasashi/58bd7e2668836a387856 to your computer and use it in GitHub Desktop.
Exit code matcher for rspec 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RSpec::Matchers.define :terminate do |code| | |
actual = nil | |
def supports_block_expectations? | |
true | |
end | |
match do |block| | |
begin | |
block.call | |
rescue SystemExit => e | |
actual = e.status | |
end | |
actual and actual == status_code | |
end | |
chain :with_code do |status_code| | |
@status_code = status_code | |
end | |
failure_message_for_should do |block| | |
"expected block to call exit(#{status_code}) but exit" + | |
(actual.nil? ? " not called" : "(#{actual}) was called") | |
end | |
failure_message_for_should_not do |block| | |
"expected block not to call exit(#{status_code})" | |
end | |
description do | |
"expect block to call exit(#{status_code})" | |
end | |
def status_code | |
@status_code ||= 0 | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe HerpDerps do | |
it 'exits cleanly' do | |
# expecting call to `exit` | |
-> expect{ described_class.run }.to terminate | |
end | |
it 'exits with non-zero status code' do | |
#expecting call to `abort` or `exit(false)` | |
-> expect{ described_class.run }.to terminate.with_code(1) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great script, thanks for writing! Just noticed the following things in my implementation.
'failure_message_for_should' and 'failure_message_for_should_not' have been depreciated in Rspec 3 and can be replaced with 'failure_message' and 'failure_message_when_negated', respectively.
See below:
Also, the '->' isn't necessary meaning you can simply call: