diff options
author | Ken Barber <ken@bob.sh> | 2011-06-29 23:37:37 +0100 |
---|---|---|
committer | Ken Barber <ken@bob.sh> | 2011-06-29 23:37:37 +0100 |
commit | 464fb1f41b9c7197fcaade6831b80d6390829ec7 (patch) | |
tree | 0849a4c8988fca9a090d1791cf77941fe5916fdd /spec/unit/parser/functions/fact_spec.rb | |
parent | ff56d9917e52b1a0d14478af74411e81e3633e4f (diff) | |
download | puppet-stdlib-464fb1f41b9c7197fcaade6831b80d6390829ec7.tar.gz puppet-stdlib-464fb1f41b9c7197fcaade6831b80d6390829ec7.tar.bz2 |
Add some more functional tests.
Diffstat (limited to 'spec/unit/parser/functions/fact_spec.rb')
-rwxr-xr-x | spec/unit/parser/functions/fact_spec.rb | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/spec/unit/parser/functions/fact_spec.rb b/spec/unit/parser/functions/fact_spec.rb deleted file mode 100755 index c013ae0..0000000 --- a/spec/unit/parser/functions/fact_spec.rb +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env rspec -require 'spec_helper' - -describe "the fact function" do - before :all do - Puppet::Parser::Functions.autoloader.loadall - end - - before :each do - @scope = Puppet::Parser::Scope.new - end - - it "should exist" do - Puppet::Parser::Functions.function("fact").should == "function_fact" - end - - it "should raise a ParseError if there is less than 1 arguments" do - lambda { @scope.function_fact([]) }.should( raise_error(Puppet::ParseError)) - end - -end |