basecamp = mock("basecamp api",;projects => <>)
Basecamp.stub!(:new).and_return(basecamp)
So for the projects one, you could return an array, or a bunch of
mocks, or a string. Just make it match how the Basecamp API is behaving.
On Jan 31, 2008, at 6:31 AM, desaperados wrote:
>
> I realise th
I realise that this is kind of a basic question but I'm new to rspec and
still trying to work out how to do things. I'm working on a rails project
that requires basecamp integration via the api, which is fairly trivial to
use via the basecamp.rb wrapper:
Connection:
basecamp = Basecamp.new(APP_CO