a11yist/test/controllers/home_controller_test.rb

11 lines
197 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
2024-07-22 22:40:56 +02:00
get root_url
assert_response :success
end
end