summaryrefslogtreecommitdiff
path: root/spec/unit/knife/role_run_list_remove_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/knife/role_run_list_remove_spec.rb')
-rw-r--r--spec/unit/knife/role_run_list_remove_spec.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/spec/unit/knife/role_run_list_remove_spec.rb b/spec/unit/knife/role_run_list_remove_spec.rb
index 0f4adf253b..5c3da5c3f7 100644
--- a/spec/unit/knife/role_run_list_remove_spec.rb
+++ b/spec/unit/knife/role_run_list_remove_spec.rb
@@ -17,7 +17,7 @@
# limitations under the License.
#
-require 'spec_helper'
+require "spec_helper"
describe Chef::Knife::RoleRunListRemove do
before(:each) do
@@ -59,7 +59,7 @@ describe Chef::Knife::RoleRunListRemove do
it "should remove the item from the run list" do
@setup.run
@knife.run
- expect(@role.run_list[0]).to eq('role[person]')
+ expect(@role.run_list[0]).to eq("role[person]")
expect(@role.run_list[1]).to be_nil
end
@@ -79,16 +79,16 @@ describe Chef::Knife::RoleRunListRemove do
it "should remove the items from the run list" do
@setup.name_args = [ "will", "recipe[orange::chicken]", "role[monkey]", "recipe[duck::type]", "role[person]", "role[bird]", "role[town]" ]
@setup.run
- @knife.name_args = [ 'will', 'role[monkey]' ]
+ @knife.name_args = [ "will", "role[monkey]" ]
@knife.run
- @knife.name_args = [ 'will', 'recipe[duck::type]' ]
+ @knife.name_args = [ "will", "recipe[duck::type]" ]
@knife.run
- expect(@role.run_list).not_to include('role[monkey]')
- expect(@role.run_list).not_to include('recipe[duck::type]')
- expect(@role.run_list[0]).to eq('recipe[orange::chicken]')
- expect(@role.run_list[1]).to eq('role[person]')
- expect(@role.run_list[2]).to eq('role[bird]')
- expect(@role.run_list[3]).to eq('role[town]')
+ expect(@role.run_list).not_to include("role[monkey]")
+ expect(@role.run_list).not_to include("recipe[duck::type]")
+ expect(@role.run_list[0]).to eq("recipe[orange::chicken]")
+ expect(@role.run_list[1]).to eq("role[person]")
+ expect(@role.run_list[2]).to eq("role[bird]")
+ expect(@role.run_list[3]).to eq("role[town]")
end
end
end