aboutsummaryrefslogtreecommitdiff
path: root/spec/unit/provider/cron/crontab_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/provider/cron/crontab_spec.rb')
-rw-r--r--spec/unit/provider/cron/crontab_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/provider/cron/crontab_spec.rb b/spec/unit/provider/cron/crontab_spec.rb
index 6e28393..4047f82 100644
--- a/spec/unit/provider/cron/crontab_spec.rb
+++ b/spec/unit/provider/cron/crontab_spec.rb
@@ -37,11 +37,11 @@ describe Puppet::Type.type(:cron).provider(:crontab) do
samples = YAML.load(File.read(my_fixture('single_line.yaml'))) # rubocop:disable Security/YAMLLoad
samples.each do |name, data|
- it "should parse crontab line #{name} correctly" do
+ it "parses crontab line #{name} correctly" do
compare_crontab_record subject.parse_line(data[:text]), data[:record]
end
- it "should reconstruct the crontab line #{name} from the record" do
+ it "reconstructs the crontab line #{name} from the record" do
expect(subject.to_line(data[:record])).to eq(data[:text])
end
end