Re: [rspec-users] upgrading rails 3.0.0.rc.2 and rspec 2.0.0.beta.20 breaks my view tests

2010-08-24 Thread nathanvda
Great David, thank you for your help! I did look at the docs but did not find that straighaway. ___ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users

Re: [rspec-users] upgrading rails 3.0.0.rc.2 and rspec 2.0.0.beta.20 breaks my view tests

2010-08-24 Thread David Chelimsky
On Aug 24, 2010, at 5:09 AM, nathanvda wrote: > On Aug 24, 9:56 am, nathanvda wrote: >> I was using rails 3 rc and rspec beta 19, and everything worked fine. >> Today i updated and i get errors on the following methods: >> >> rendered.should contain("bla") >> >> rendered.should have_xpath(//tabl

Re: [rspec-users] upgrading rails 3.0.0.rc.2 and rspec 2.0.0.beta.20 breaks my view tests

2010-08-24 Thread nathanvda
I rolled back to version 2.0.0.beta.19 and everything is fine again. On Aug 24, 9:56 am, nathanvda wrote: > I was using rails 3 rc and rspec beta 19, and everything worked fine. > Today i updated and i get errors on the following methods: > > rendered.should contain("bla") > > rendered.should hav

[rspec-users] upgrading rails 3.0.0.rc.2 and rspec 2.0.0.beta.20 breaks my view tests

2010-08-24 Thread nathanvda
I was using rails 3 rc and rspec beta 19, and everything worked fine. Today i updated and i get errors on the following methods: rendered.should contain("bla") rendered.should have_xpath(//table//tr) rendered.should have_selector('#foo') What should i do?