-
-
Save makaroni4/7d9bf24ae69b9ea37362 to your computer and use it in GitHub Desktop.
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 do |block| | |
"expected block to call exit(#{status_code}) but exit" + | |
(actual.nil? ? " not called" : "(#{actual}) was called") | |
end | |
failure_message_when_negated 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