Sha256: 11bd033dace3370b205857efe445b135fe435deda33daf539b57dae354b40a55
Contents?: true
Size: 377 Bytes
Versions: 14
Compression:
Stored size: 377 Bytes
Contents
require 'test_helper' module PagesCms class ArticlesControllerTest < ActionController::TestCase setup do @routes = Engine.routes end test 'get articles home' do get :index assert_response :success end test 'get individual article' do get :show, id: pages_cms_articles(:one).id assert_response :success end end end
Version data entries
14 entries across 14 versions & 1 rubygems