我是Rspec的新手并且学习控制器测试。现在我有以下控制器和规范文件。
控制器文件:
class TwzController < ApplicationController
before_filter :is_authentic?, :only => :angular
def angular
@things = current_user.things
@data_attributes = current_user.data_attributes
end
规范文件:
require 'spec_helper'
describe TwzController do
describe 'GET#Angular' do
it "renders the angular template" do
get :angular
expect(response).to render_template :angular
end
end
end
以下是此控制器#method的路径:
get '/dashboard/' => 'twz#angular', :as=>'dashboard'
当我运行bundle exec rspec时,我的所有模型测试都会运行,但不会运行此控制器测试。
我做错了什么?