search for: catscontrol

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

Did you mean: atacontrol
2014 Mar 31
0
Rails Engine ActionController::UrlGenerationError on functional tests
...: # config/routes.rbMyEngine::Engine.routes.draw do resources :cats, only: [:show], format: 'json'end # test/dummy/config/routes.rbRails.application.routes.draw do mount MyEngine::Engine => '/my_engine'end # app/controllers/my_engine/cats_controller.rbmodule MyEngine class CatsController < ApplicationController def show render json: { hello: 'world' } end endend # test/controllers/my_engine/cats_controller_test.rbmodule MyEngine class CatsControllerTest < ActionController::TestCase test 'should get success' do get :show, id: 42...