e2c-api/test/controllers/dashboard_controller_test.rb
2025-05-23 12:27:58 -04:00

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