summaryrefslogtreecommitdiff
path: root/spec/unit/run_list/run_list_expansion_spec.rb
diff options
context:
space:
mode:
authortyler-ball <tyleraball@gmail.com>2014-12-05 18:06:55 -0800
committertyler-ball <tyleraball@gmail.com>2014-12-05 18:06:55 -0800
commit091001ae8d27a8a5de03af2c20905e23a8ffefb7 (patch)
tree28abfa5821f80e2090b8f89988a0bab004b710a5 /spec/unit/run_list/run_list_expansion_spec.rb
parent8a7b450cb87ef62e9f21d32c91a52accefba6ffd (diff)
parenta45716b67a2168c21b166e4aab38668e9b96d856 (diff)
downloadchef-merging-master.tar.gz
Merge branch 'master' into merging-mastermerging-master
Conflicts: lib/chef/version.rb
Diffstat (limited to 'spec/unit/run_list/run_list_expansion_spec.rb')
-rw-r--r--spec/unit/run_list/run_list_expansion_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/run_list/run_list_expansion_spec.rb b/spec/unit/run_list/run_list_expansion_spec.rb
index 927257875e..859219d346 100644
--- a/spec/unit/run_list/run_list_expansion_spec.rb
+++ b/spec/unit/run_list/run_list_expansion_spec.rb
@@ -97,7 +97,7 @@ describe Chef::RunList::RunListExpansion do
expect(@expansion.recipes).to eq(['lobster', 'crabrevenge', 'fist'])
end
- it "has the merged attributes from the roles with outer roles overridding inner" do
+ it "has the merged attributes from the roles with outer roles overriding inner" do
expect(@expansion.default_attrs).to eq({'foo' => 'bar'})
expect(@expansion.override_attrs).to eq({'baz' => 'qux'})
end
@@ -109,7 +109,7 @@ describe Chef::RunList::RunListExpansion do
end
- describe "after expanding a run list with a non existant role" do
+ describe "after expanding a run list with a non existent role" do
before do
allow(@expansion).to receive(:fetch_role) { @expansion.role_not_found('crabrevenge', "role[base]") }
@expansion.expand