diff options
author | John Keiser <jkeiser@opscode.com> | 2013-10-10 15:51:24 -0700 |
---|---|---|
committer | John Keiser <jkeiser@opscode.com> | 2013-10-10 15:51:24 -0700 |
commit | 21b9ce573f1c6ee9ec934960a844e782e011ba08 (patch) | |
tree | 52a212c71a09c75184a14bc60f0778f1cf09fa04 /spec/integration/knife | |
parent | 2a214bcff7174b61129a7a8a642b8df5b5f4afee (diff) | |
download | chef-21b9ce573f1c6ee9ec934960a844e782e011ba08.tar.gz |
Rename -. to -z
Diffstat (limited to 'spec/integration/knife')
-rw-r--r-- | spec/integration/knife/common_options_spec.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/integration/knife/common_options_spec.rb b/spec/integration/knife/common_options_spec.rb index e9c7e7c102..6de4d9360b 100644 --- a/spec/integration/knife/common_options_spec.rb +++ b/spec/integration/knife/common_options_spec.rb @@ -87,16 +87,16 @@ EOM end end - it 'knife raw -. /nodes/x retrieves the role' do - knife('raw -. /nodes/x').should_succeed /"name": "x"/ + it 'knife raw -z /nodes/x retrieves the role' do + knife('raw -z /nodes/x').should_succeed /"name": "x"/ end it 'knife raw --local-mode /nodes/x retrieves the role' do knife('raw --local-mode /nodes/x').should_succeed /"name": "x"/ end - it 'knife raw -. --chef-zero-port=9999 /nodes/x retrieves the role' do - knife('raw -. --chef-zero-port=9999 /nodes/x').should_succeed /"name": "x"/ + it 'knife raw -z --chef-zero-port=9999 /nodes/x retrieves the role' do + knife('raw -z --chef-zero-port=9999 /nodes/x').should_succeed /"name": "x"/ Chef::Config.chef_server_url.should == 'http://127.0.0.1:9999' end end |