RSpec's changelog says that in version 1.2.5:
"also alias_method :stub, :stub!, so you can stub with less bang"
which I've been taking advantage of a lot.
However, I just ran into a situation where using #stub caused an error
to occur, and changing to #stub! caused the error the disappear.
Any
I've never heard of CurbFu, but according to
http://github.com/gdi/curb-fu/blob/master/lib/curb-fu.rb#L43 it defines a stub
method already. So you're hitting that one, which expects two arguments.
stub! goes to RSpec's mocking framework.
Pat
On Mar 19, 2010, at 10:00 AM, Nick Hoffman wrote
Pat Maddox wrote:
> I've never heard of CurbFu, but according to
> http://github.com/gdi/curb-fu/blob/master/lib/curb-fu.rb#L43 it defines
> a stub method already. So you're hitting that one, which expects two
> arguments. stub! goes to RSpec's mocking framework.
>
> Pat
Good catch! Thanks,
On Mar 19, 2010, at 1:27 PM, Nick Hoffman wrote:
> Pat Maddox wrote:
>> I've never heard of CurbFu, but according to
>> http://github.com/gdi/curb-fu/blob/master/lib/curb-fu.rb#L43 it defines
>> a stub method already. So you're hitting that one, which expects two
>> arguments. stub! goes to R
Hi,
I have this in my controller action:
from_address = Setting.find_by_name("shipping_from_address").address
and my spec fails:
NoMethodError in 'Admin::ShippingLabelsController should render a pdf file'
undefined method `address' for nil:NilClass
yet in the console I can do:
>> Setting.fin
Patrick Collins wrote:
> Hi,
>
> I have this in my controller action:
>
> from_address = Setting.find_by_name("shipping_from_address").address
>
> and my spec fails:
>
> NoMethodError in 'Admin::ShippingLabelsController should render a pdf
> file'
> undefined method `address' for nil:NilClass
> Patrick, please create a new thread for this, since it doesn't have
> anything to do with the current topic.
Wow that is weird.. I replied to the previous thread in my email
client but removed the subject-- as I assumed that was what kept
things associated with threads; there was no other text
Hi,
I have this in my controller action:
from_address = Setting.find_by_name("shipping_from_address").address
and my spec fails:
NoMethodError in 'Admin::ShippingLabelsController should render a pdf
file'
undefined method `address' for nil:NilClass
yet in the console I can do:
>> Setting.fin
patrick99e99 wrote:
>> Patrick, please create a new thread for this, since it doesn't have
>> anything to do with the current topic.
>
> Wow that is weird.. I replied to the previous thread in my email
> client but removed the subject-- as I assumed that was what kept
> things associated with thr
Hey Patrick.
> I have this in my controller action:
>
> from_address = Setting.find_by_name("shipping_from_address").address
>
> and my spec fails:
>
> NoMethodError in 'Admin::ShippingLabelsController should render a pdf
> file'
> undefined method `address' for nil:NilClass
>
> yet in the con
10 matches
Mail list logo