2024-07-15 14:31:54 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
require 'test_helper'
|
2024-07-15 02:19:27 +02:00
|
|
|
|
|
|
|
|
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
|
2024-07-15 02:19:27 +02:00
|
|
|
assert_response :success
|
|
|
|
|
end
|
|
|
|
|
end
|