summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorAshley Penney <ashley.penney@puppetlabs.com>2013-09-18 15:59:44 -0400
committerAshley Penney <ashley.penney@puppetlabs.com>2013-09-18 15:59:44 -0400
commitaeb3ea63ec561440c02f9d4c4d4c0ac3a1d096c9 (patch)
treeddead96743afd1c05c6afa857a665c40d07bb0bd /spec/spec_helper.rb
parent0eeb6501b1b2ea84c38b0d4464ac42c12c4e9fa7 (diff)
Overhaul the spec tests to work in rspec2.
This work gets rid of the provider_example_group and reworks everything to work properly against rspec2. I don't know if I'd consider the style "better" but it works.
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb30
1 files changed, 9 insertions, 21 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 3bac650..acfae0c 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,25 +1,13 @@
-require 'pathname'
-dir = Pathname.new(__FILE__).parent
-$LOAD_PATH.unshift(dir, dir + 'lib', dir + '../lib')
+require 'puppetlabs_spec_helper/module_spec_helper'
+require 'simplecov'
+require 'support/filesystem_helpers'
+require 'support/fixture_helpers'
-require 'test/unit'
-require 'mocha'
-require 'puppet'
-gem 'rspec', '>= 1.2.9'
-require 'spec/autorun'
-
-Dir[File.join(File.dirname(__FILE__), 'support', '*.rb')].each do |support_file|
- require support_file
-end
-
-Spec::Runner.configure do |config|
- config.mock_with :mocha
- config.include(FixtureHelpers)
- config.include(FilesystemHelpers)
+SimpleCov.start do
+ add_filter "/spec/"
end
-# We need this because the RAL uses 'should' as a method. This
-# allows us the same behaviour but with a different method name.
-class Object
- alias :must :should
+RSpec.configure do |c|
+ c.include FilesystemHelpers
+ c.include FixtureHelpers
end