Hi,

I'm using a expectation like this :
repository.should_receive(:add_gem).with("test.txt", :anything)

When I run my spec, it fails with the following message :
Spec::Mocks::MockExpectationError in 'MiniGemServer should add a new gem to
the repository after it has been uploaded'
#<MiniGemServer::Repository:0xb11164> expected :add_gem with ("test.txt",
:anything) but received it with ("test.txt",
"C:/DOCUME~1/xyzuser/LOCALS~1/Temp/RackMultipart20081113-8392-1vodbzf-0")

Shouldn't it be working? The first argument is the same and I don't really
care about the second one as long as it is there. I also tried to replace
:anything with :string and got the same error.

Any idea why I get this?

Thanks!
_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to