[rspec-users] Rspec: How to mock class method
bill gate
lists at ruby-forum.com
Fri Jul 27 05:31:03 UTC 2012
Hi, I have two model: Message, User
message.rb
```
class Message < ActiveRecord::Base
class << self
def method_a(args)
[1,2]
end
end
end
```
user.rb
```
class User < ActiveRecord::Base
def method_user
if Message.method_a('anythings')
#... some code
end
end
end
```
I want to test method_user,but I don't want to test Message#method_a
How I can mock Message with method_a?
Thanks!
--
Posted via http://www.ruby-forum.com/.
More information about the rspec-users
mailing list