Select Git revision
roles_controller_test.rb 378 B
require "test_helper"
class Admin::RolesControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get admin_roles_index_url
assert_response :success
end
test "should get edit" do
get admin_roles_edit_url
assert_response :success
end
test "should get update" do
get admin_roles_update_url
assert_response :success
end
end