summaryrefslogtreecommitdiff
path: root/spec/functions
diff options
context:
space:
mode:
authorMorgan Haskel <morgan@puppetlabs.com>2015-04-16 10:48:10 -0700
committerMorgan Haskel <morgan@puppetlabs.com>2015-04-16 10:48:10 -0700
commit8a1d1e2f3425ff8fa1d7e74463ec226df2b968c8 (patch)
tree07a0c9a583059d80dcf9c81e287f74c454804377 /spec/functions
parent59b3fb4472c6ceafc6762739e767294054787bd4 (diff)
parentac24e7acc767bce9cc1977f90c798df94292813e (diff)
downloadpuppet-stdlib-8a1d1e2f3425ff8fa1d7e74463ec226df2b968c8.tar.gz
puppet-stdlib-8a1d1e2f3425ff8fa1d7e74463ec226df2b968c8.tar.bz2
Merge pull request #314 from amateo/feature/loadyaml_check_file
Check if file exists before loading with loadyaml. If not, return nil
Diffstat (limited to 'spec/functions')
-rwxr-xr-xspec/functions/loadyaml_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/functions/loadyaml_spec.rb b/spec/functions/loadyaml_spec.rb
index cdc3d6f..4b8d406 100755
--- a/spec/functions/loadyaml_spec.rb
+++ b/spec/functions/loadyaml_spec.rb
@@ -14,6 +14,12 @@ describe "the loadyaml function" do
expect { scope.function_loadyaml([]) }.to raise_error(Puppet::ParseError)
end
+ it "should return nil when file does not exist" do
+ yaml_file = tmpfilename ('yamlfile')
+ result = scope.function_loadyaml([yaml_file])
+ expect(result).to(eq(nil))
+ end
+
it "should convert YAML file to a data structure" do
yaml_file = tmpfilename ('yamlfile')
File.open(yaml_file, 'w') do |fh|