Skip to content
Snippets Groups Projects
Select Git revision
  • 56ec07c5d84a88196486d50e636b6e887530a5a6
  • main default protected
  • renovate/solid_queue-1.x-lockfile
  • renovate/selenium-webdriver-4.x-lockfile
  • renovate/icalendar-2.x-lockfile
  • renovate/debug-1.x-lockfile
  • renovate/turbo-rails-2.x-lockfile
  • renovate/gcr.io-kaniko-project-executor-1.x
  • renovate/ruby
  • eh22 protected
  • update-rubocop
11 results

roles_controller_test.rb

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