summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordanielsdeleo <dan@opscode.com>2012-12-20 15:43:55 -0800
committerdanielsdeleo <dan@opscode.com>2012-12-21 12:15:18 -0800
commit6bdcab78353213c189c4feb9097949633b8e8e7b (patch)
treead2b3f64c608c0ed99146ab8bb3e22c878353a66
parenta8011d0fcfa84f8cdfcfd8be091116546c9a617a (diff)
downloadchef-6bdcab78353213c189c4feb9097949633b8e8e7b.tar.gz
strip trailing whitespace
-rw-r--r--spec/unit/provider/file_spec.rb48
1 files changed, 24 insertions, 24 deletions
diff --git a/spec/unit/provider/file_spec.rb b/spec/unit/provider/file_spec.rb
index 23352a5124..b298aaca34 100644
--- a/spec/unit/provider/file_spec.rb
+++ b/spec/unit/provider/file_spec.rb
@@ -56,68 +56,68 @@ describe Chef::Provider::File do
context "load_current_resource_attrs", :unix_only do
it "should collect the current state of the file on the filesystem and populate current_resource" do
# test setup
- stat_struct = mock("::File.stat", :mode => 0600, :uid => 0, :gid => 0, :mtime => 10000)
+ stat_struct = mock("::File.stat", :mode => 0600, :uid => 0, :gid => 0, :mtime => 10000)
::File.should_receive(:stat).exactly(3).with(@resource.path).and_return(stat_struct)
-
- # test execution
+
+ # test execution
@provider.load_current_resource
-
+
# post-condition checks
@provider.current_resource.mode.should == 0600
@provider.current_resource.owner.should == 0
@provider.current_resource.group.should == 0
end
-
+
it "should NOT update the new_resource state with the current_resourse state if new_resource state is already specified" do
# test setup
- stat_struct = mock("::File.stat", :mode => 0600, :uid => 0, :gid => 0, :mtime => 10000)
+ stat_struct = mock("::File.stat", :mode => 0600, :uid => 0, :gid => 0, :mtime => 10000)
::File.should_receive(:stat).exactly(3).with(@resource.path).and_return(stat_struct)
-
+
@provider.new_resource.group(1)
@provider.new_resource.owner(1)
@provider.new_resource.mode(0644)
-
- # test execution
+
+ # test execution
@provider.load_current_resource
-
+
# post-condition checks
@provider.new_resource.group.should == 1
@provider.new_resource.owner.should == 1
@provider.new_resource.mode.should == 0644
end
-
+
it "should update the new_resource state with the current_resource state if the new_resource state is not specified." do
# test setup
- stat_struct = mock("::File.stat", :mode => 0600, :uid => 0, :gid => 0, :mtime => 10000)
+ stat_struct = mock("::File.stat", :mode => 0600, :uid => 0, :gid => 0, :mtime => 10000)
::File.should_receive(:stat).exactly(3).with(@resource.path).and_return(stat_struct)
-
+
@provider.new_resource.group(nil)
@provider.new_resource.owner(nil)
@provider.new_resource.mode(nil)
-
- # test execution
+
+ # test execution
@provider.load_current_resource
-
+
# post-condition checks
@provider.new_resource.group.should eql(@provider.current_resource.group)
@provider.new_resource.owner.should eql(@provider.current_resource.owner)
@provider.new_resource.mode.should eql(@provider.current_resource.mode)
end
-
+
it "should update the new_resource when attempting to set the new state" do
# test setup
- stat_struct = mock("::File.stat", :mode => 0600, :uid => 0, :gid => 0, :mtime => 10000)
+ stat_struct = mock("::File.stat", :mode => 0600, :uid => 0, :gid => 0, :mtime => 10000)
# called once in update_new_file_state and once in checksum
- ::File.should_receive(:stat).twice.with(@provider.new_resource.path).and_return(stat_struct)
+ ::File.should_receive(:stat).twice.with(@provider.new_resource.path).and_return(stat_struct)
::File.should_receive(:directory?).once.with(@provider.new_resource.path).and_return(false)
-
+
@provider.new_resource.group(nil)
@provider.new_resource.owner(nil)
@provider.new_resource.mode(nil)
-
- # test exectution
+
+ # test exectution
@provider.update_new_file_state
-
+
# post-condition checks
@provider.new_resource.group.should == 0
@provider.new_resource.owner.should == 0
@@ -487,7 +487,7 @@ describe Chef::Provider::File do
it "should return valid diff output when content does not match the string content provided" do
Tempfile.open("some-temp") do |file|
@resource.path file.path
- @provider = Chef::Provider::File.new(@resource, @run_context)
+ @provider = Chef::Provider::File.new(@resource, @run_context)
@provider.load_current_resource
result = @provider.diff_current_from_content "foo baz"
# remove the file name info which varies.