Files
fizzy/test/controllers/prompts/commands_controller_test.rb
T
2025-07-03 12:46:36 +02:00

13 lines
222 B
Ruby

require "test_helper"
class Prompts::CommandsControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
test "index" do
get prompts_commands_path
assert_response :success
end
end