diff options
| author | Josh Cooper <josh@puppetlabs.com> | 2011-07-26 15:02:58 -0700 |
|---|---|---|
| committer | Josh Cooper <josh@puppetlabs.com> | 2011-07-26 15:02:58 -0700 |
| commit | 0506874ebeac8f2fb7d6c754ed6b606eab56d216 (patch) | |
| tree | 952a05f810643e0a510f76c43f04065e57f87957 /spec/unit/application | |
| parent | 770e30d620271f988321ea45c108fb167ab55ad7 (diff) | |
| parent | d88923bb830336d7f5fc1e0809923e9a69126995 (diff) | |
| download | puppet-0506874ebeac8f2fb7d6c754ed6b606eab56d216.tar.gz puppet-0506874ebeac8f2fb7d6c754ed6b606eab56d216.tar.xz puppet-0506874ebeac8f2fb7d6c754ed6b606eab56d216.zip | |
Merge branch 'master' of github.com:puppetlabs/puppet
* 'master' of github.com:puppetlabs/puppet:
maint: Suggest where to start troubleshooting SSL error message
maint: Fix cert app to print help and exit if no subcommand
Diffstat (limited to 'spec/unit/application')
| -rwxr-xr-x | spec/unit/application/cert_spec.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/unit/application/cert_spec.rb b/spec/unit/application/cert_spec.rb index 7510f0783..300234c2b 100755 --- a/spec/unit/application/cert_spec.rb +++ b/spec/unit/application/cert_spec.rb @@ -208,5 +208,15 @@ describe Puppet::Application::Cert, :'fails_on_ruby_1.9.2' => true do args.should == ["fun.example.com"] end end + + it "should print help and exit if there is no subcommand" do + args = [] + @cert_app.command_line.stubs(:args).returns(args) + @cert_app.stubs(:help).returns("I called for help!") + @cert_app.expects(:puts).with("I called for help!") + + expect { @cert_app.parse_options }.to exit_with 0 + @cert_app.subcommand.should be_nil + end end end |
