Displaying 1 result from an estimated 1 matches for "memberships_controller_spec".
2007 Oct 17
4
works in script but not in rake
...nAction in ''MembershipsController handling
PUT /project/ID/membership/N/accept should flash message''
No action responded to accept
---
but if I run the spec file individually, all the examples pass with
no failures
$ script/spec --color --format specdoc spec/controllers/
memberships_controller_spec.rb
My routes.rb contains
map.resources :projects do |project|
project.resources :memberships, :member => { :accept => :get }
...
end
but I have other resources with :member actions defined and they spec ok
This is completely repeatable.
Any ideas?
I''m running with an...