mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 21:02:52 +00:00
9 lines
173 B
Ruby
9 lines
173 B
Ruby
require "test_helper"
|
|
|
|
class PagesControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get home" do
|
|
get pages_home_url
|
|
assert_response :success
|
|
end
|
|
end
|