summaryrefslogtreecommitdiffstats
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authordave.strock@gmail.com2011-06-22 22:31:47 -0500
committerChris Sepic2011-06-28 13:16:29 -0500
commite987ccb23d9a1a068c975aa4448dd324a23b5672 (patch)
tree97fc6560f90e804849e7ff61e16519581b167c7e /spec/spec_helper.rb
parent3f8f46fc8d8aaef021d5679c90d8ec10f4129aa9 (diff)
downloadevernote-e987ccb23d9a1a068c975aa4448dd324a23b5672.tar.bz2
Got all specs to pass with rspec 2
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index d1d2c0b..c2ee368 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,9 +1,9 @@
$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'evernote'
-require 'spec'
-require 'spec/autorun'
+require 'rspec'
+require 'yaml'
-Spec::Runner.configure do |config|
+RSpec.configure do |config|
end