Skip to content
Snippets Groups Projects
Select Git revision
  • f8d4c7694b5f1b7abbbbc392d52394f969524144
  • master default protected
  • style-2021
  • newstyle
  • archive/2020
  • vanion-master-patch-78871
  • deinkoks-master-patch-08946
  • 2020
8 results

index.md

Blame
  • 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