Displaying 1 result from an estimated 1 matches for "adassetscontroller".
2008 Jun 12
1
map.resources :foo_items, :as => :foo confusing my controller specs
...items, :as => :foo
that I originally generated with rspec_scaffold:
ruby script/generate rspec_scaffold foo_item
but when I use the :as attribute in resources to make the URI path be
''/foo'' instead of ''/foo_items'' the default/generated controller specs
for AdAssetsController become broken e.g.
it "should be successful" do
do_get
response.should be_success
end
''FooItemsController route generation should map { :controller =>
''foo_items'', :action => ''index'' } to /foo_items'' FAILED
expe...