Files
flights/test/controllers/flights_controller_test.rb
2022-01-15 16:05:31 -05:00

10 lines
180 B
Ruby

require 'test_helper'
class FlightsControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get flights_index_url
assert_response :success
end
end