Re: [rspec-users] Failing View Spec, rspec-rails 2.2.1

2010-12-17 Thread Matt S.
Hey David, You rock. Thanks a million. Got it working right away! Thanks, Matt -- Posted via http://www.ruby-forum.com/. ___ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users

Re: [rspec-users] Failing View Spec, rspec-rails 2.2.1

2010-12-09 Thread David Chelimsky
On Dec 9, 2010, at 8:57 AM, Sid W. wrote: > David Chelimsky wrote in post #967419: >> This is a regression that was introduced by an enhancement in >> rspec-mocks-2.2. It has been reported, identified, and fixed, but not >> yet released: >> >> https://github.com/rspec/rspec-rails/issues/closed#is

Re: [rspec-users] Failing View Spec, rspec-rails 2.2.1

2010-12-09 Thread Sid W.
David Chelimsky wrote in post #967419: > This is a regression that was introduced by an enhancement in > rspec-mocks-2.2. It has been reported, identified, and fixed, but not > yet released: > > https://github.com/rspec/rspec-rails/issues/closed#issue/266 > > I'll try to get an rspec-rails-2.2.2 re

Re: [rspec-users] Failing View Spec, rspec-rails 2.2.1

2010-12-09 Thread Sid W.
Sid W. wrote in post #967432: > gem 'rspec-rails', :git => 'git://github.com/rspec/rspec-rails' Missing .git corrected but still no joy. Sid W. wrote in post #967432: > It appears that the fix you mention is in master not 2-2-maintenance. > Due to RSpec 2.3 dependancies I've added the following t

Re: [rspec-users] Failing View Spec, rspec-rails 2.2.1

2010-12-09 Thread Sid W.
David Chelimsky wrote in post #967419: > > I'll try to get an rspec-rails-2.2.2 release out this weekend with > this fix. In the mean time, you can point your Gemfile to the branch > on github and get the fix right now: > > gem "rspec-rails", :git => "git://github.com/rspec/rspec-rails", > :branch

Re: [rspec-users] Failing View Spec, rspec-rails 2.2.1

2010-12-09 Thread David Chelimsky
On Thu, Dec 9, 2010 at 6:43 AM, Sid W. wrote: > I'm running into this issue as well. Surely someone has a solution? > Seems to be Rails 3.0.3. Please be sure to quote relevant parts of the thread to provide context for people who are reading on phones, etc, that don't make it easy to see an entir

Re: [rspec-users] Failing View Spec, rspec-rails 2.2.1

2010-12-09 Thread Sid W.
Here is a simple example of the breaking code; == CODE describe "payments/new.html.haml" do let(:payment) do mock_model("Payment").as_new_record.as_null_object end before do assign(:payment, payment) end it "renders a form to take payment details" do render

Re: [rspec-users] Failing View Spec, rspec-rails 2.2.1

2010-12-09 Thread Sid W.
I'm running into this issue as well. Surely someone has a solution? Seems to be Rails 3.0.3. -- Posted via http://www.ruby-forum.com/. ___ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users

Re: [rspec-users] Failing View Spec, rspec-rails 2.2.1

2010-12-02 Thread Matthew Smith
David, Sorry, I didn't specify what the url was for! That was the url to pull from, not the github page Github Page: https://github.com/matthewcalebsmith/rspec_issue git clone: https://github.com/matthewcalebsmith/rspec_issue.git git://github.com/matthewcalebsmith/rspec_issue.git By the wa

Re: [rspec-users] Failing View Spec, rspec-rails 2.2.1

2010-12-01 Thread David Chelimsky
On Dec 1, 2010, at 11:30 AM, Matt Smith wrote: > Hello all. > > Just a little frustration moment here and hoping someone can explain to me > what is going on. > > I had a passing view spec using >= rspec-rails2. Then after updating to > 2.1.0-2.2.1 it always fails. Thinking I was crazy I buil

[rspec-users] Failing View Spec, rspec-rails 2.2.1

2010-12-01 Thread Matt Smith
Hello all. Just a little frustration moment here and hoping someone can explain to me what is going on. I had a passing view spec using >= rspec-rails2. Then after updating to 2.1.0-2.2.1 it always fails. Thinking I was crazy I built the example in the rspec book, and I get the same thing. Here i