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