summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorMatt Wrock <matt@mattwrock.com>2017-05-10 09:12:02 -0700
committerGitHub <noreply@github.com>2017-05-10 09:12:02 -0700
commitbb6682036fcdb119fa1f7701543eec191c08170b (patch)
tree678f9636d5f6feef87c1adf8500ccb64bf400ade /spec
parentc4c327d2b11179c1a6086e991ff6af73b3ad72d2 (diff)
parent7639b054ab953e196d94b40d55fda21ac7f413b2 (diff)
downloadchef-bb6682036fcdb119fa1f7701543eec191c08170b.tar.gz
Merge pull request #6105 from Stromweld/patch-1
Updated to fix day validation with monthly frequency
Diffstat (limited to 'spec')
-rw-r--r--spec/unit/resource/windows_task_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/resource/windows_task_spec.rb b/spec/unit/resource/windows_task_spec.rb
index fa2d458bbb..2b3ee16024 100644
--- a/spec/unit/resource/windows_task_spec.rb
+++ b/spec/unit/resource/windows_task_spec.rb
@@ -166,8 +166,8 @@ describe Chef::Resource::WindowsTask do
end
context "#validate_create_day" do
- it "raises error if frequency is not :weekly" do
- expect { resource.send(:validate_create_day, "Mon", :monthly) }.to raise_error("day attribute is only valid for tasks that run weekly")
+ it "raises error if frequency is not :weekly or :monthly" do
+ expect { resource.send(:validate_create_day, "Mon", :once) }.to raise_error("day attribute is only valid for tasks that run monthly or weekly")
end
it "accepts a valid single day" do