Files
danbooru/test/functional/admin/dashboards_controller_test.rb
2017-02-06 18:48:35 -06:00

13 lines
269 B
Ruby

require 'test_helper'
class Admin::DashboardsControllerTest < ActionController::TestCase
context "The admin dashboard controller" do
context "show action" do
should "render" do
get :show
assert_response :success
end
end
end
end