1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: add explicit require for rspec
Tests fail with "undefined method describe' for main:Object (NoMethodError)"
.
This patch add an explicit rspec require to fix it.
Bug: https://github.com/opscode/mixlib-cli/pull/6
Author: Praveen Arimbrathodiyil <pravi.a@gmail.com>
Last-Update: 27-12-2011
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,6 +1,7 @@
$TESTING=true
$:.push File.join(File.dirname(__FILE__), '..', 'lib')
+require 'rspec'
require 'mixlib/cli'
class TestCLI
|