codespaces-rails/test/controllers/hello_codespaces_controller_test.rb
Josh Abernathy c1821d8bd1
First cut
2022-11-03 13:55:12 +00:00

8 lines
196 B
Ruby

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