On Oct 28, 2011, at 10:16 AM, internetchris wrote:
> Hi Group
>
> I'm still waiting for the light to come on with stubbing/mocking and
> the syntax for each. I have simple method in my Order class like
> so
>
> def credit_card
>ActiveMerchant::Billing::CreditCard.new(
> :type
On Oct 31, 2011, at 4:59 AM, Jakub Arnold wrote:
> When I run my specs inside spork, they all just pass without any
> problems, but once I try to run them without spork, I end up with
>
> Failure/Error: Unable to find matching line from backtrace
> TypeError:
> superclass mismatch f
Hi Group
I'm still waiting for the light to come on with stubbing/mocking and
the syntax for each. I have simple method in my Order class like
so
def credit_card
ActiveMerchant::Billing::CreditCard.new(
:type => card_type,
:number => card_number,
When I run my specs inside spork, they all just pass without any
problems, but once I try to run them without spork, I end up with
Failure/Error: Unable to find matching line from backtrace
TypeError:
superclass mismatch for class Attribute
on each request spec.
Here's a gist wi