diff options
| author | Matt Robinson <matt@puppetlabs.com> | 2010-11-22 14:56:49 -0800 |
|---|---|---|
| committer | Nick Lewis <nick@puppetlabs.com> | 2010-12-16 11:52:36 -0800 |
| commit | 5db696b605ebb331d5af3e640e68978c4f6d604d (patch) | |
| tree | 8cb94b655cdf3d232080fcb41509ed7d9047efd1 /spec/unit/parser | |
| parent | 167e84d39d5cdd6b628d4d681b918406e7c896e6 (diff) | |
| download | puppet-5db696b605ebb331d5af3e640e68978c4f6d604d.tar.gz puppet-5db696b605ebb331d5af3e640e68978c4f6d604d.tar.xz puppet-5db696b605ebb331d5af3e640e68978c4f6d604d.zip | |
maint: Fix tests that don't run on their own
From the spec directory I found all the specs that fail when run on their own.
for TEST in `find . -name "*.rb" -type f`; do
spec $TEST > /dev/null 2>&1
if [[ $? != 0 ]]; then
echo $TEST
fi
done
All of them were cases of missing requires.
Paired-with: Nick Lewis <nick@puppetlabs.com>
Diffstat (limited to 'spec/unit/parser')
| -rwxr-xr-x | spec/unit/parser/collector_spec.rb | 1 | ||||
| -rwxr-xr-x | spec/unit/parser/templatewrapper_spec.rb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/spec/unit/parser/collector_spec.rb b/spec/unit/parser/collector_spec.rb index 15808d6ff..908cda63a 100755 --- a/spec/unit/parser/collector_spec.rb +++ b/spec/unit/parser/collector_spec.rb @@ -2,6 +2,7 @@ require File.dirname(__FILE__) + '/../../spec_helper' +require 'puppet/rails' require 'puppet/parser/collector' describe Puppet::Parser::Collector, "when initializing" do diff --git a/spec/unit/parser/templatewrapper_spec.rb b/spec/unit/parser/templatewrapper_spec.rb index d4d1d1b8e..68d90a1cc 100755 --- a/spec/unit/parser/templatewrapper_spec.rb +++ b/spec/unit/parser/templatewrapper_spec.rb @@ -1,6 +1,7 @@ #!/usr/bin/env ruby require File.dirname(__FILE__) + '/../../spec_helper' +require 'puppet/parser/templatewrapper' describe Puppet::Parser::TemplateWrapper do before(:each) do |
