Finally I could solve the problem. The problem was on the definition of
the anonymous controller on the spec:
instead of:
controller do
def index
end
end
I used:
controller(Admins::Base) do
def index
end
end
You need to specify always the anonymous controller you're testing
unless is ApplicationController the one you're trying to test.
--
Posted via http://www.ruby-forum.com/.
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users