Re: [rspec-users] Rspec 2, Rails 3 and Webrat

2010-11-12 Thread Ruben C.
I did this with webrat 0.7.2, rails 3.0.1, test-unit 2.1.1: require "webrat" require 'webrat/core/matchers' include Webrat::Methods Webrat.configure do |config| config.mode = :rack end and for now I can run tests like this: test "testing_webrat_visit" do visit 'home/index' end maybe some m

Re: [rspec-users] Rspec 2, Rails 3 and Webrat

2010-06-24 Thread David Chelimsky
On Jun 22, 2010, at 11:10 AM, Miriam wrote: > I'm having the same problem the OP mentions -- undefined method > "visit" > > Trying to upgrade from Rails 2.3 to Rails 3.0.beta4 > > My test stack: > webrat (0.7.1) > cucumber (0.8.3) > pickle (0.2.1) > factory_girl (1.3.0) > factory_girl_rails (1.0

Re: [rspec-users] Rspec 2, Rails 3 and Webrat

2010-06-24 Thread Miriam
I'm having the same problem the OP mentions -- undefined method "visit" Trying to upgrade from Rails 2.3 to Rails 3.0.beta4 My test stack: webrat (0.7.1) cucumber (0.8.3) pickle (0.2.1) factory_girl (1.3.0) factory_girl_rails (1.0) I changed config.mode = :rack, as suggested, but I"m still getti

Re: [rspec-users] Rspec 2, Rails 3 and Webrat

2010-06-13 Thread David Chelimsky
On Jun 11, 2010, at 10:17 PM, Rodrigo Rosenfeld Rosas wrote: > Apparently Webrat is not yet compatible with Rails 3: This is incorrect. It's just that webrat needs to be configured for :rack instead of :rails: Webrat.configure do |config| config.mode = :rack end Since you'r

Re: [rspec-users] Rspec 2, Rails 3 and Webrat

2010-06-11 Thread Rodrigo Rosenfeld Rosas
Apparently Webrat is not yet compatible with Rails 3: http://github.com/brynary/webrat/blob/master/lib/webrat/integrations/rails.rb line 2: require "action_controller/integration" action_controller/integration.rb does exist in Rails 2 but not in Rails 3, but I didn't find any branch for Rails

Re: [rspec-users] Rspec 2, Rails 3 and Webrat

2010-06-11 Thread Rodrigo Rosenfeld Rosas
Thank you, Peter. Rodrigo. Em 11-06-2010 14:45, Peter Fitzgibbons escreveu: remove the :type key from your describe line (it's no longer needed). Peter Fitzgibbons (847) 859-9550 peter.fitzgibb...@gmail.com IM GTalk: peter.fitzgibbons IM AOL: peter.fitzgibb...@gmail.com On 6/11/10 12:30 PM, R

Re: [rspec-users] Rspec 2, Rails 3 and Webrat

2010-06-11 Thread David Chelimsky
Sent from my iPhone On Jun 11, 2010, at 1:30 PM, Rodrigo Rosenfeld Rosas > wrote: Now I'm getting: no such file to load -- action_controller/integration Backtrace, please Am I missing something? Thanks, Rodrigo. P.S.: Sorry if this was sent twice... Em 11-06-2010 01:10, David Chelim

Re: [rspec-users] Rspec 2, Rails 3 and Webrat

2010-06-11 Thread Rodrigo Rosenfeld Rosas
Now I'm getting: no such file to load -- action_controller/integration Am I missing something? Thanks, Rodrigo. Em 11-06-2010 01:10, David Chelimsky escreveu: Change the directory name to requests (a la merb) Sent from my iPhone On Jun 10, 2010, at 10:35 PM, Rodrigo Rosenfeld Rosas wrote

Re: [rspec-users] Rspec 2, Rails 3 and Webrat

2010-06-11 Thread Peter Fitzgibbons
remove the :type key from your describe line (it's no longer needed). Peter Fitzgibbons (847) 859-9550 peter.fitzgibb...@gmail.com IM GTalk: peter.fitzgibbons IM AOL: peter.fitzgibb...@gmail.com On 6/11/10 12:30 PM, Rodrigo Rosenfeld Rosas wrote: Now I'm getting: no such file to load -- actio

Re: [rspec-users] Rspec 2, Rails 3 and Webrat

2010-06-11 Thread Rodrigo Rosenfeld Rosas
Also, changing the directory name didn't affect the custom IntegrationHelper issue... Rodrigo. Em 11-06-2010 01:10, David Chelimsky escreveu: Change the directory name to requests (a la merb) Sent from my iPhone On Jun 10, 2010, at 10:35 PM, Rodrigo Rosenfeld Rosas wrote: Hi guys, I'm

Re: [rspec-users] Rspec 2, Rails 3 and Webrat

2010-06-11 Thread Rodrigo Rosenfeld Rosas
Now I'm getting: no such file to load -- action_controller/integration Am I missing something? Thanks, Rodrigo. P.S.: Sorry if this was sent twice... Em 11-06-2010 01:10, David Chelimsky escreveu: Change the directory name to requests (a la merb) Sent from my iPhone On Jun 10, 2010, at 1

Re: [rspec-users] Rspec 2, Rails 3 and Webrat

2010-06-10 Thread David Chelimsky
Change the directory name to requests (a la merb) Sent from my iPhone On Jun 10, 2010, at 10:35 PM, Rodrigo Rosenfeld Rosas > wrote: Hi guys, I'm trying to port an application to Rails 3 but can't get my integration tests to run. I can't call the Webrat's method (yields 'undefined metho

[rspec-users] Rspec 2, Rails 3 and Webrat

2010-06-10 Thread Rodrigo Rosenfeld Rosas
Hi guys, I'm trying to port an application to Rails 3 but can't get my integration tests to run. I can't call the Webrat's method (yields 'undefined method `visit`', for instance). I don't use Cucumber. Is there any instructions about how to configure Rspec 2 with Webrat on Rails 3? I al