Files
danbooru/test/functional/admin/dashboards_controller_test.rb
2019-12-22 21:23:37 -06:00

17 lines
359 B
Ruby

require 'test_helper'
class Admin::DashboardsControllerTest < ActionDispatch::IntegrationTest
context "The admin dashboard controller" do
setup do
@admin = create(:admin_user)
end
context "show action" do
should "render" do
get_auth admin_dashboard_path, @admin
assert_response :success
end
end
end
end