mirror of
https://github.com/go-gitnub/gitnub.git
synced 2024-12-01 11:12:44 +00:00
11 lines
210 B
Ruby
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
|