Bump Thor to version 0.20.0. (#2843)

Signed-off-by: Jared Quick <jquick@chef.io>
This commit is contained in:
Jared Quick 2018-03-21 13:44:28 -04:00 committed by Dominik Richter
parent c3c2e8d244
commit 7045fb9193
2 changed files with 3 additions and 3 deletions

View file

@ -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'

View file

@ -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