diff options
author | Bobosila Victor <vbobosila1@gmail.com> | 2021-09-24 13:18:41 +0300 |
---|---|---|
committer | Bobosila Victor <vbobosila1@gmail.com> | 2021-09-30 14:30:03 +0300 |
commit | ec516a229afbedb0eefe401a8eefecc27004f6ac (patch) | |
tree | 5beb73211d54f6020d882a172e716bccf04fe748 /spec/unit | |
parent | 0d92e9f24280df1082ec8dfa2baf8778b853e0ca (diff) | |
download | puppet-augeas_core-ec516a229afbedb0eefe401a8eefecc27004f6ac.tar.gz puppet-augeas_core-ec516a229afbedb0eefe401a8eefecc27004f6ac.tar.bz2 |
(MODULES-11197) Update puppetlabs-augeas_core to latest pdk template
Also updated `.sync` file to include the `auto_release.yml` workflow
Diffstat (limited to 'spec/unit')
-rw-r--r-- | spec/unit/puppet_x/augeas/util/parser_spec.rb | 3 | ||||
-rw-r--r-- | spec/unit/type/augeas_spec.rb | 8 |
2 files changed, 6 insertions, 5 deletions
diff --git a/spec/unit/puppet_x/augeas/util/parser_spec.rb b/spec/unit/puppet_x/augeas/util/parser_spec.rb index f8b5b2b..9769d76 100644 --- a/spec/unit/puppet_x/augeas/util/parser_spec.rb +++ b/spec/unit/puppet_x/augeas/util/parser_spec.rb @@ -92,7 +92,8 @@ describe PuppetX::Augeas::Util::Parser do end it 'allows multi-character unicode hexadecimal character escapes with \\u{...}' do - expect(parse_to_array('["\u{7}", "\u{20}", "\u{100}", "\u{2026}", "\u{1F464}", "\u{100000}", "\u{53 74 72 69 6E 67}"]')).to eq(["\a", ' ', "\u{100}", "\u{2026}", "\u{1F464}", "\u{100000}", 'String']) + expect(parse_to_array('["\u{7}", "\u{20}", "\u{100}", "\u{2026}", "\u{1F464}", "\u{100000}", "\u{53 74 72 69 6E 67}"]')).to eq(["\a", ' ', "\u{100}", "\u{2026}", "\u{1F464}", "\u{100000}", + 'String']) end end diff --git a/spec/unit/type/augeas_spec.rb b/spec/unit/type/augeas_spec.rb index ac3ffa1..f397d74 100644 --- a/spec/unit/type/augeas_spec.rb +++ b/spec/unit/type/augeas_spec.rb @@ -36,21 +36,21 @@ describe augeas do params = [:name, :context, :onlyif, :changes, :root, :load_path, :type_check, :show_diff] properties.each do |property| - it "should have a #{property} property" do + it "has a #{property} property" do expect(augeas.attrclass(property).ancestors).to be_include(Puppet::Property) end - it "should have documentation for its #{property} property" do + it "has documentation for its #{property} property" do expect(augeas.attrclass(property).doc).to be_instance_of(String) end end params.each do |param| - it "should have a #{param} parameter" do + it "has a #{param} parameter" do expect(augeas.attrclass(param).ancestors).to be_include(Puppet::Parameter) end - it "should have documentation for its #{param} parameter" do + it "has documentation for its #{param} parameter" do expect(augeas.attrclass(param).doc).to be_instance_of(String) end end |