tests: add misc controller tests.

This commit is contained in:
evazion
2017-02-05 01:31:21 -06:00
parent 5c16e9ce48
commit d74503ae05
7 changed files with 61 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
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