mirror of
https://github.com/edcommonwealth/e2c-api.git
synced 2026-03-07 21:48:13 -08:00
8 lines
183 B
Ruby
8 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
|