summaryrefslogtreecommitdiff
path: root/spec/unit/puppet/parser/functions/validate_re_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/puppet/parser/functions/validate_re_spec.rb')
-rw-r--r--spec/unit/puppet/parser/functions/validate_re_spec.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/unit/puppet/parser/functions/validate_re_spec.rb b/spec/unit/puppet/parser/functions/validate_re_spec.rb
index a07ad47..d189efb 100644
--- a/spec/unit/puppet/parser/functions/validate_re_spec.rb
+++ b/spec/unit/puppet/parser/functions/validate_re_spec.rb
@@ -5,7 +5,9 @@ describe Puppet::Parser::Functions.function(:validate_re) do
# The subject of these examplres is the method itself.
subject do
- scope.method :function_validate_re
+ # This makes sure the function is loaded within each test
+ function_name = Puppet::Parser::Functions.function(:validate_re)
+ scope.method(function_name)
end
context 'Using Puppet::Parser::Scope.new' do