diff options
author | Adam Jacob <adam@opscode.com> | 2009-10-16 17:03:42 -0700 |
---|---|---|
committer | Adam Jacob <adam@opscode.com> | 2009-10-16 17:03:42 -0700 |
commit | 19db05a58855537bef42f660907a5e788b7855a3 (patch) | |
tree | 81ea6c3f3789a03a76a7fa706d88a3f0aec5b3fe /chef/spec/unit/client_spec.rb | |
parent | 9aa23ee276db51655796150ab074a1478ae767ed (diff) | |
download | chef-19db05a58855537bef42f660907a5e788b7855a3.tar.gz |
Removing calls to sync_*
Diffstat (limited to 'chef/spec/unit/client_spec.rb')
-rw-r--r-- | chef/spec/unit/client_spec.rb | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/chef/spec/unit/client_spec.rb b/chef/spec/unit/client_spec.rb index 7520c53e1c..824c6da4e5 100644 --- a/chef/spec/unit/client_spec.rb +++ b/chef/spec/unit/client_spec.rb @@ -64,36 +64,6 @@ describe Chef::Client, "run" do @client.run end - it "should synchronize definitions from the server" do - @client.should_receive(:sync_definitions).and_return(true) - @client.run - end - - it "should synchronize recipes from the server" do - @client.should_receive(:sync_recipes).and_return(true) - @client.run - end - - it "should synchronize and load library files from the server" do - @client.should_receive(:sync_library_files).and_return(true) - @client.run - end - - it "should synchronize and load attribute files from the server" do - @client.should_receive(:sync_attribute_files).and_return(true) - @client.run - end - - it "should synchronize providers from the server" do - @client.should_receive(:sync_provider_files).and_return(true) - @client.run - end - - it "should synchronize resources from the server" do - @client.should_receive(:sync_resource_files).and_return(true) - @client.run - end - it "should save the nodes state on the server (twice!)" do @client.should_receive(:save_node).exactly(3).times.and_return(true) @client.run |