Tagged Questions
0
votes
1answer
56 views
Moching rails association methods
Here is my helper method which I want to test.
def posts_correlation(name)
if name.present?
author = User.find_by_name(name)
author.posts.count * 100 / Post.count if author
...
0
votes
1answer
131 views
Factory.create fails in Put context but not Post context
I'm using factorygirl. I'm still new, in particular to the testing aspect of rails.
When I descibe POST create I can create any number of Person objects without any issue. I don't actually need to ...
0
votes
1answer
330 views
Why does rspec redirect not get full route during test?
I'm attempting the following functional test on the controller. I'm using the following
RSpec2
Rails 3
Shoudla
Mocha
Here's the test
context "POST on create should be successful" do
...
0
votes
2answers
3k views
Returning mock objects from factory girl
I am using Mocha and Factory_girl in a JRuby rails application. When I call the factory I would like to return the objects with some mocking already done. Here is a code snippet of what I am trying ...