Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

shoulda macros with rspec2 beta 5 and rails3 beta2

I've setup Rspec2 beta5 and shoulda as following to use shoulda macros inside rspec model tests.

=================

Update 2011-Feb-18

Now we can use shoulda-matchers out of the box.

Just add gem shoulda-matchers in you Gemfile and nothing else in spec_helper or any hack. It just runs.

=================

Gemfile

group :test do
  gem "rspec", ">= 2.0.0.beta.4"
  gem "rspec-rails", ">= 2.0.0.beta.4"
  gem 'shoulda',          :git => 'git://github.com/bmaddy/
shoulda.git'
  gem "faker"
  gem "machinist"
  gem "pickle",           :git => 'git://github.com/codegram/
pickle.git'
  gem 'capybara',         :git => 'git://github.com/jnicklas/
capybara.git'
  gem 'database_cleaner', :git => 'git://github.com/bmabey/
database_cleaner.git'
  gem 'cucumber-rails',   :git => 'git://github.com/aslakhellesoy/
cucumber-rails.git'
end

spec_helper.rb

Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}

require 'shoulda'

Rspec.configure do |config|

spec/models/outlet_spec.rb

require 'spec_helper'

describe Outlet do
  it { should validate_presence_of(:name) }
end

And when I run the spec, I get the following error.

[~/rails_apps/rails3_apps/automation (master)⚡] ➔ spec spec/models/
outlet_spec.rb
DEPRECATION WARNING: RAILS_ROOT is deprecated! Use Rails.root instead.
(called from join at /home/millisami/.rvm/gems/ruby-1.9.1-p378%rails3/
bundler/gems/shoulda-87e75311f83548760114cd4188afa4f83fecdc22-master/
lib/shoulda/autoload_macros.rb:40)
F

1) Outlet
    Failure/Error: it { should validate_presence_of(:name) }
    undefined method `validate_presence_of' for
#<Rspec::Core::ExampleGroup::Nested_1:0xc4dc138 @__memoized={}>
    # ./spec/models/outlet_spec.rb:4:in `block (2 levels) in <top
(required)>'

Finished in 0.0399 seconds
1 example, 1 failures
[~/rails_apps/rails3_apps/automation (master)⚡] ➔

Why the "undefined method" ?? Is the shoulda getting loaded?

like image 365
Autodidact Avatar asked Apr 07 '10 07:04

Autodidact


1 Answers

Using RSpec 2.0.0.beta.19

# Gemfile
group :test do
  gem "rspec", ">= 2.0.0.beta.19"
  gem "rspec-rails", ">= 2.0.0.beta.17"
  gem "shoulda"
end

# spec/spec_helper.rb
require 'rspec/rails'
require 'shoulda/integrations/rspec2' # Add this line

# In your specs....
it { should validate_presence_of(:name) }

Running rake spec should now load and run specs including the RSpec 2 matchers.

like image 86
Chris Blunt Avatar answered Oct 03 '22 00:10

Chris Blunt