mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
Bump Thor to version 0.20.0. (#2843)
Signed-off-by: Jared Quick <jquick@chef.io>
This commit is contained in:
parent
c3c2e8d244
commit
7045fb9193
2 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
|
|||
spec.required_ruby_version = '>= 2.3'
|
||||
|
||||
spec.add_dependency 'train', '~> 1.2'
|
||||
spec.add_dependency 'thor', '~> 0.19'
|
||||
spec.add_dependency 'thor', '~> 0.20'
|
||||
spec.add_dependency 'json', '>= 1.8', '< 3.0'
|
||||
spec.add_dependency 'method_source', '~> 0.8'
|
||||
spec.add_dependency 'rubyzip', '~> 1.1'
|
||||
|
|
|
@ -24,7 +24,7 @@ describe 'inspec compliance' do
|
|||
it 'login server url missing' do
|
||||
out = inspec('compliance login')
|
||||
out.exit_status.must_equal 1
|
||||
out.stderr.must_include 'ERROR: "inspec login" was called with no arguments'
|
||||
out.stderr.must_include 'ERROR: "inspec compliance login" was called with no arguments'
|
||||
end
|
||||
|
||||
it 'inspec compliance profiles without authentication' do
|
||||
|
@ -35,7 +35,7 @@ describe 'inspec compliance' do
|
|||
|
||||
it 'try to upload a profile without directory' do
|
||||
out = inspec('compliance upload')
|
||||
out.stderr.must_include 'ERROR: "inspec upload" was called with no arguments'
|
||||
out.stderr.must_include 'ERROR: "inspec compliance upload" was called with no arguments'
|
||||
out.exit_status.must_equal 1
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue