Enable debug mode when PRODUCER_DEBUG is set
This commit is contained in:
parent
bd754f2bf6
commit
2b0e62be26
@ -11,3 +11,9 @@ Feature: CLI debug option
|
||||
Then the output must contain "producer"
|
||||
And the output must contain "net-ssh"
|
||||
And the output must contain ruby lib directory
|
||||
|
||||
Scenario: enables debug mode from the environment
|
||||
Given a recipe with an error
|
||||
And I set the environment variable "PRODUCER_DEBUG"
|
||||
When I execute the recipe
|
||||
Then the output must contain "producer"
|
||||
|
@ -11,6 +11,7 @@ module Producer
|
||||
ARGUMENTS_SEPARATOR = '--'.freeze
|
||||
|
||||
ENV_VERBOSE_KEY = 'PRODUCER_VERBOSE'.freeze
|
||||
ENV_DEBUG_KEY = 'PRODUCER_DEBUG'.freeze
|
||||
|
||||
class << self
|
||||
def run!(arguments, stdin: $stdin, stdout: $stdout, stderr: $stderr)
|
||||
@ -73,6 +74,7 @@ module Producer
|
||||
|
||||
def configure_environment!(environment)
|
||||
@env.verbose = true if environment.key? ENV_VERBOSE_KEY
|
||||
@env.debug = true if environment.key? ENV_DEBUG_KEY
|
||||
end
|
||||
|
||||
def split_arguments_lists(arguments)
|
||||
|
@ -84,6 +84,14 @@ module Producer::Core
|
||||
expect(cli.env).to be_verbose
|
||||
end
|
||||
end
|
||||
|
||||
context 'when PRODUCER_DEBUG environment variable is set' do
|
||||
before { environment['PRODUCER_DEBUG'] = 'yes' }
|
||||
|
||||
it 'enables env debug mode' do
|
||||
expect(cli.env).to be_debug
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#parse_arguments!' do
|
||||
|
Loading…
x
Reference in New Issue
Block a user