mirror of
https://github.com/go-gitnub/gitnub.git
synced 2024-11-28 21:22:46 +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
|