问这个问题的时候我已经很无力了,今天折腾了一天,各种受挫……,现在又遇到路由问题……
rails plugin new xiaozu --mountable
Xiaozu::Engine.routes.draw do
resources :groups
end
require 'test_helper'
module Xiaozu
class GroupsControllerTest < ActionController::TestCase
setup do
@group = xiaozu_groups(:one)
end
test "should get index" do
get :index
assert_response :success
assert_not_nil assigns(:groups)
end
end
end
他居然报错啊报错啊:
test_should_get_index(Xiaozu::GroupsControllerTest):
ActionController::RoutingError: No route matches {:controller=>"xiaozu/groups"}
这个该怎么解决啊……太 DT 了…… 还有如果想把项目弄到 Engine 里,都要注意什么啊,坑太多了……