a11yist/test/controllers/home_controller_test.rb

11 lines
202 B
Ruby
Raw Normal View History

2024-07-15 14:31:54 +02:00
# frozen_string_literal: true
require 'test_helper'
class HomeControllerTest < ActionDispatch::IntegrationTest
2024-07-15 14:31:54 +02:00
test 'should get show' do
get home_show_url
assert_response :success
end
end