forked from External/greenlight
10 lines
180 B
Ruby
10 lines
180 B
Ruby
require 'test_helper'
|
|
|
|
class LandingControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get index" do
|
|
get landing_index_url
|
|
assert_response :success
|
|
end
|
|
|
|
end
|