RSPEC测试Get / NEW自定义STI路由

时间:2014-05-07 17:09:34

标签: ruby-on-rails rspec routing single-table-inheritance

我有一个带有StaticPage子类的Page类。

我想测试我可以在RSPEC中访问新静态页面的路径。

路线:

resources :sites do
      resources :pages, only: [:index, :destroy]
      resources :static_pages, except: :show, controller: "pages", type: "StaticPage"

规格:

describe 'GET :new' do
    it 'assigns @page' do
      expect(@page).to_not be_nil
    end
  end

失败

如何测试GET:new

new_organization_site_static_page GET    /organizations/:organization_id/sites/:site_id/static_pages/new(.:format)      pages#new {:type=>"StaticPage"}

在RSPEC。

0 个答案:

没有答案