Displaying 1 result from an estimated 1 matches for "openrequest".
Did you mean:
openrequests
2006 Jul 05
2
Association Extensions
...end
end
with the following ActiveRecord
class User < ActiveRecord::Base
has_many :my_requests, :class_name => "BuyerRequest", :extend => RequestFinder
end
In my tests I have a test to check the number of requests.
def test_number_of _open_requests
john = users(:john)
openrequests = john.my_requests.open
assert openrequests.count == 1
end
Although this returns an array with the correct values my problem is that the count method is undefined. Does anyone know if thats expected behaviour, according the Rails recipes books each of the assocation proxy methods should be avail...