a11yist/test/controllers/home_controller_test.rb
david cdea0e1218
Some checks failed
/ Text (push) Failing after 15s
/ Checkout (push) Successful in 1m3s
Add tests
2024-07-22 22:40:56 +02:00

10 lines
197 B
Ruby

# frozen_string_literal: true
require 'test_helper'
class HomeControllerTest < ActionDispatch::IntegrationTest
test 'should get show' do
get root_url
assert_response :success
end
end