require 'test_helper' module PagesCms class Admin::ArticlesControllerTest < ActionController::TestCase setup do @routes = Engine.routes end test 'should get new' do get :new assert_response :success end test 'should get edit' do get :edit, id: pages_cms_articles(:one) assert_response :success end test 'should get index' do get :index assert_response :success end end end