Files
joanna-website/test/controllers/dashboard_controller_test.rb
T
2026-07-28 22:05:33 -06:00

15 lines
333 B
Ruby

require "test_helper"
class DashboardControllerTest < ActionDispatch::IntegrationTest
test "options returns JSON" do
get "/dashboard/options",
params: {
table: 'Joint',
pluck_column: 'Joint'
}
assert_response :success
assert_equal "application/json", response.media_type
end
end