diff options
author | Thom May <thom@chef.io> | 2015-05-05 17:51:41 +0100 |
---|---|---|
committer | Thom May <thom@chef.io> | 2015-05-05 17:51:41 +0100 |
commit | d52e13ea77589ba0209ba48454b78c60674a7e79 (patch) | |
tree | e45ee8b32c34b931c93c10c74904702c055fa659 /spec | |
parent | 25e05528231b32ed181f57c983d9a8161564571e (diff) | |
download | chef-d52e13ea77589ba0209ba48454b78c60674a7e79.tar.gz |
Fix indentation
Diffstat (limited to 'spec')
-rw-r--r-- | spec/support/shared/functional/securable_resource.rb | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/spec/support/shared/functional/securable_resource.rb b/spec/support/shared/functional/securable_resource.rb index 2af6ef3a67..cd8c2a166b 100644 --- a/spec/support/shared/functional/securable_resource.rb +++ b/spec/support/shared/functional/securable_resource.rb @@ -233,21 +233,21 @@ shared_examples_for "a securable resource with existing target" do end describe "when setting the suid bit", :requires_root do - before do - @suid_mode = 04776 - resource.mode @suid_mode - resource.run_action(:create) - end - - it "should set the suid bit" do - expect(File.lstat(path).mode & 007777).to eq(@suid_mode & 007777) - end - - it "should retain the suid bit when updating the user" do - resource.user 1338 - resource.run_action(:create) - expect(File.lstat(path).mode & 007777).to eq(@suid_mode & 007777) - end + before do + @suid_mode = 04776 + resource.mode @suid_mode + resource.run_action(:create) + end + + it "should set the suid bit" do + expect(File.lstat(path).mode & 007777).to eq(@suid_mode & 007777) + end + + it "should retain the suid bit when updating the user" do + resource.user 1338 + resource.run_action(:create) + expect(File.lstat(path).mode & 007777).to eq(@suid_mode & 007777) + end end end |