gitnub/test/controllers/landing_controller_test.rb
2021-09-22 12:35:54 -04:00

11 lines
210 B
Ruby

# frozen_string_literal: true
require 'test_helper'
class LandingControllerTest < ActionDispatch::IntegrationTest
test 'should get index' do
get landing_index_url
assert_response :success
end
end