summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rwxr-xr-xspec/functions/basename_spec.rb (renamed from spec/unit/puppet/parser/functions/basename_spec.rb)0
-rwxr-xr-xspec/functions/bool2str_spec.rb (renamed from spec/unit/puppet/parser/functions/bool2str_spec.rb)0
-rwxr-xr-xspec/functions/camelcase_spec.rb (renamed from spec/unit/puppet/parser/functions/camelcase_spec.rb)0
-rw-r--r--spec/functions/type_of_spec.rb (renamed from spec/unit/puppet/functions/type_of_spec.rb)0
-rwxr-xr-xspec/functions/validate_integer_spec.rb6
-rwxr-xr-xspec/functions/validate_ipv4_address_spec.rb4
-rwxr-xr-xspec/functions/validate_ipv6_address_spec.rb4
-rwxr-xr-xspec/functions/validate_numeric_spec.rb6
-rwxr-xr-xspec/lib/puppet_spec/compiler.rb1
-rwxr-xr-xspec/spec_helper.rb7
-rwxr-xr-xspec/spec_helper_acceptance.rb2
11 files changed, 13 insertions, 17 deletions
diff --git a/spec/unit/puppet/parser/functions/basename_spec.rb b/spec/functions/basename_spec.rb
index 8a2d0dc..8a2d0dc 100755
--- a/spec/unit/puppet/parser/functions/basename_spec.rb
+++ b/spec/functions/basename_spec.rb
diff --git a/spec/unit/puppet/parser/functions/bool2str_spec.rb b/spec/functions/bool2str_spec.rb
index b878891..b878891 100755
--- a/spec/unit/puppet/parser/functions/bool2str_spec.rb
+++ b/spec/functions/bool2str_spec.rb
diff --git a/spec/unit/puppet/parser/functions/camelcase_spec.rb b/spec/functions/camelcase_spec.rb
index 70382ad..70382ad 100755
--- a/spec/unit/puppet/parser/functions/camelcase_spec.rb
+++ b/spec/functions/camelcase_spec.rb
diff --git a/spec/unit/puppet/functions/type_of_spec.rb b/spec/functions/type_of_spec.rb
index 8afb624..8afb624 100644
--- a/spec/unit/puppet/functions/type_of_spec.rb
+++ b/spec/functions/type_of_spec.rb
diff --git a/spec/functions/validate_integer_spec.rb b/spec/functions/validate_integer_spec.rb
index dff3415..3865c4f 100755
--- a/spec/functions/validate_integer_spec.rb
+++ b/spec/functions/validate_integer_spec.rb
@@ -43,7 +43,7 @@ describe Puppet::Parser::Functions.function(:validate_integer) do
it "should not compile when #{the_number} is a bare word" do
Puppet[:code] = "validate_integer(#{the_number})"
- expect { scope.compiler.compile }.to raise_error(Puppet::ParseError, /to be an Integer/)
+ expect { scope.compiler.compile }.to raise_error
end
end
@@ -117,7 +117,7 @@ describe Puppet::Parser::Functions.function(:validate_integer) do
it "should not compile when a non-Integer maximum #{the_max} bare word is passed" do
Puppet[:code] = "validate_integer(1,#{the_max})"
- expect { scope.compiler.compile }.to raise_error(Puppet::ParseError, /to be unset or an Integer/)
+ expect { scope.compiler.compile }.to raise_error
end
end
@@ -212,7 +212,7 @@ describe Puppet::Parser::Functions.function(:validate_integer) do
it "should not compile when a non-Integer minimum #{the_min} bare word is passed" do
Puppet[:code] = "validate_integer(1,#{max},#{the_min})"
- expect { scope.compiler.compile }.to raise_error(Puppet::ParseError, /to be unset or an Integer/)
+ expect { scope.compiler.compile }.to raise_error
end
end
end
diff --git a/spec/functions/validate_ipv4_address_spec.rb b/spec/functions/validate_ipv4_address_spec.rb
index 45401a4..27ea4fe 100755
--- a/spec/functions/validate_ipv4_address_spec.rb
+++ b/spec/functions/validate_ipv4_address_spec.rb
@@ -39,9 +39,7 @@ describe Puppet::Parser::Functions.function(:validate_ipv4_address) do
describe "when given numbers" do
it "should not compile" do
Puppet[:code] = "validate_ipv4_address(1, 2)"
- expect {
- scope.compiler.compile
- }.to raise_error(Puppet::ParseError, /is not a valid IPv4 address/)
+ expect { scope.compiler.compile }.to raise_error
end
end
diff --git a/spec/functions/validate_ipv6_address_spec.rb b/spec/functions/validate_ipv6_address_spec.rb
index a839d90..e87b372 100755
--- a/spec/functions/validate_ipv6_address_spec.rb
+++ b/spec/functions/validate_ipv6_address_spec.rb
@@ -41,9 +41,7 @@ describe Puppet::Parser::Functions.function(:validate_ipv6_address) do
describe "when given numbers" do
it "should not compile" do
Puppet[:code] = "validate_ipv6_address(1, 2)"
- expect {
- scope.compiler.compile
- }.to raise_error(Puppet::ParseError, /not a valid IPv6 address/)
+ expect { scope.compiler.compile }.to raise_error
end
end
end
diff --git a/spec/functions/validate_numeric_spec.rb b/spec/functions/validate_numeric_spec.rb
index c8b0e4d..1623a3d 100755
--- a/spec/functions/validate_numeric_spec.rb
+++ b/spec/functions/validate_numeric_spec.rb
@@ -43,7 +43,7 @@ describe Puppet::Parser::Functions.function(:validate_numeric) do
it "should not compile when #{the_number} is a bare word" do
Puppet[:code] = "validate_numeric(#{the_number})"
- expect { scope.compiler.compile }.to raise_error(Puppet::ParseError, /to be a Numeric/)
+ expect { scope.compiler.compile }.to raise_error
end
end
@@ -115,7 +115,7 @@ describe Puppet::Parser::Functions.function(:validate_numeric) do
it "should not compile when a non-Numeric maximum #{the_max} bare word is passed" do
Puppet[:code] = "validate_numeric(1,#{the_max})"
- expect { scope.compiler.compile }.to raise_error(Puppet::ParseError, /to be unset or a Numeric/)
+ expect { scope.compiler.compile }.to raise_error
end
end
@@ -210,7 +210,7 @@ describe Puppet::Parser::Functions.function(:validate_numeric) do
it "should not compile when a non-Numeric minimum #{the_min} bare word is passed" do
Puppet[:code] = "validate_numeric(1,#{max},#{the_min})"
- expect { scope.compiler.compile }.to raise_error(Puppet::ParseError, /to be unset or a Numeric/)
+ expect { scope.compiler.compile }.to raise_error
end
end
end
diff --git a/spec/lib/puppet_spec/compiler.rb b/spec/lib/puppet_spec/compiler.rb
index 2f0ae4d..1f322ca 100755
--- a/spec/lib/puppet_spec/compiler.rb
+++ b/spec/lib/puppet_spec/compiler.rb
@@ -2,6 +2,7 @@
module PuppetSpec::Compiler
def compile_to_catalog(string, node = Puppet::Node.new('foonode'))
Puppet[:code] = string
+ Puppet[:parser] = 'future' if ENV['FUTURE_PARSER'] == 'yes'
Puppet::Parser::Compiler.compile(node)
end
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index b490ca3..896cb83 100755
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -17,9 +17,7 @@ require 'puppet_spec/fixtures'
require 'puppet_spec/matchers'
require 'puppet_spec/database'
require 'monkey_patches/alias_should_to_must'
-require 'mocha/setup'
-
-
+require 'mocha/api'
RSpec.configure do |config|
config.before :each do
@@ -27,8 +25,9 @@ RSpec.configure do |config|
# test cases. This requires each example group to explicitly load the
# facts being exercised with something like
# Facter.collection.loader.load(:ipaddress)
- Facter::Util::Loader.any_instance.stubs(:load_all)
Facter.clear
Facter.clear_messages
+
+ Puppet[:parser] = 'future' if ENV['FUTURE_PARSER'] == 'yes'
end
end
diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb
index 3203ce9..79b1390 100755
--- a/spec/spec_helper_acceptance.rb
+++ b/spec/spec_helper_acceptance.rb
@@ -33,7 +33,7 @@ RSpec.configure do |c|
# Configure all nodes in nodeset
c.before :suite do
- if ENV['FUTURE_PARSER'] == 'true'
+ if ENV['FUTURE_PARSER'] == 'yes'
default[:default_apply_opts] ||= {}
default[:default_apply_opts].merge!({:parser => 'future'})
end