Max Williams
2009-Feb-06 11:13 UTC
[Ferret-talk] ActsAsFerret - what''s the class of the results?
I''m trying to write a test for a method that uses a ferret search, but can''t validate that the results are a_a_f results because my class test doesn''t work. Can anyone set me straight? Here''s some console experimentation that shows the root of the problem.>> users = User.find_with_ferret("max", :per_page => 2)=> [#<User ... ... ]>> users.size=> 2>> users.next_page #call a ferret-results-specific method=> 2>> users.kind_of?(ActsAsFerret::SearchResults)=> false What class should i be testing against, if it''s not ActsAsFerret::SearchResults? If i do type on the results i just get Array. -- Posted via http://www.ruby-forum.com/.
Jens Kraemer
2009-Feb-10 08:58 UTC
[Ferret-talk] ActsAsFerret - what''s the class of the results?
Hi, SearchResults is a *really* thin wrapper around a standard Ruby Array instance. If you really want to check it''s a SearchResults instance and not something else, check for Array and whether it behaves like it should by looking at the ''special'' methods the SearchResults class adds, maybe like this: assert_equal Array, results.class %w(total_hits current_page per_page total_pages).each {|m| assert results.respond_to?(m.to_sym) } cheers, Jens On 06.02.2009, at 12:13, Max Williams wrote:> I''m trying to write a test for a method that uses a ferret search, but > can''t validate that the results are a_a_f results because my class > test > doesn''t work. Can anyone set me straight? Here''s some console > experimentation that shows the root of the problem. > >>> users = User.find_with_ferret("max", :per_page => 2) > => [#<User ... > ... > ] >>> users.size > => 2 >>> users.next_page #call a ferret-results-specific method > => 2 >>> users.kind_of?(ActsAsFerret::SearchResults) > => false > > What class should i be testing against, if it''s not > ActsAsFerret::SearchResults? If i do type on the results i just get > Array. > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Ferret-talk mailing list > Ferret-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/ferret-talk >-- Jens Kr?mer Finkenlust 14, 06449 Aschersleben, Germany VAT Id DE251962952 http://www.jkraemer.net/ - Blog http://www.omdb.org/ - The new free film database -------------- next part -------------- A non-text attachment was scrubbed... Name: PGP.sig Type: application/pgp-signature Size: 194 bytes Desc: This is a digitally signed message part URL: <http://rubyforge.org/pipermail/ferret-talk/attachments/20090210/685c2fd0/attachment.bin>
Max Williams
2009-Feb-10 10:24 UTC
[Ferret-talk] ActsAsFerret - what''s the class of the results?
ah ok. i should have thought to just put that same method that i referred to into a ''responds_to'' call in my test, like you suggest :) Thanks Jens max -- Posted via http://www.ruby-forum.com/.