Как мне публиковать сообщения на контроллере, отличном от того, на который в настоящий момент указывает тестовый скрипт?
Пример: в user_controller_spec.rb
it "should just post to users" do
post :create, @params # this goes to the users controller
end
Я хочу сделатьчто-то вроде:
it "should post to user and people to do some integration testing" do
post :create, @params # this goes to the users controller still
post 'people', :create, @params # this goes to the people controller
end
пс: я не хочу настраивать огурец