lib/beaker/options/options_file_parser.rb in beaker-4.38.1 vs lib/beaker/options/options_file_parser.rb in beaker-4.39.0

- old
+ new

@@ -26,10 +26,10 @@ # to set additional environment variables def self.parse_options_file(options_file_path) result = Beaker::Options::OptionsHash.new if options_file_path options_file_path = File.expand_path(options_file_path) - unless File.exists?(options_file_path) + unless File.exist?(options_file_path) raise ArgumentError, "Specified options file '#{options_file_path}' does not exist!" end # This eval will allow the specified options file to have access to our # scope. It is important that the variable 'options_file_path' is # accessible, because some existing options files (e.g. puppetdb) rely on