gitnub/test/controllers/landing_controller_test.rb

11 lines
210 B
Ruby
Raw Normal View History

2021-09-22 16:35:54 +00:00
# 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