10 lines
176 B
Ruby
10 lines
176 B
Ruby
|
require 'test_helper'
|
||
|
|
||
|
class Admin::PageContentsControllerTest < ActionController::TestCase
|
||
|
test "should get index" do
|
||
|
get :index
|
||
|
assert_response :success
|
||
|
end
|
||
|
|
||
|
end
|