codespaces-rails/test/controllers/hello_codespaces_controller_test.rb
2022-11-03 15:23:30 +00:00

8 lines
173 B
Ruby

require "test_helper"
class HelloCodespacesControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get "/"
assert_response :success
end
end