mirror of
https://github.com/kingomarnajjar/codespaces-rails.git
synced 2026-07-26 06:37:17 +10:00
8 lines
173 B
Ruby
8 lines
173 B
Ruby
require "test_helper"
|
|
|
|
class HelloCodespacesControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get index" do
|
|
get "/"
|
|
assert_response :success
|
|
end
|
|
end
|