search for: by_alpha

Displaying 1 result from an estimated 1 matches for "by_alpha".

2011 Mar 18
7
Controller Spec & DataMapper Chaining
...and I''m trying to write a controller spec for an index action that will include DM query chaining. Here is a very simplified version of the Controller#index I''m working on def index @widgets = Widget.all(:order => [ :name.asc ]) if params[:alpha] @widgets = @widgets.by_alpha(params[:alpha]) elsif params[:beta] @widgets = @widgets.by_beta(params[:beta]) end end I''m trying to write a spec for this and I''m struggling. It feels like it''ll be something uber simple but I''m just not getting it. describe "GET ''index...