created admin controller

This commit is contained in:
Ken Johnson
2013-05-17 10:25:56 -04:00
parent 5f80211580
commit a279d06b4c
4 changed files with 15 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
class AdminController < ApplicationController
end
+2
View File
@@ -0,0 +1,2 @@
module AdminHelper
end
+7
View File
@@ -0,0 +1,7 @@
require 'test_helper'
class AdminControllerTest < ActionController::TestCase
# test "the truth" do
# assert true
# end
end
+4
View File
@@ -0,0 +1,4 @@
require 'test_helper'
class AdminHelperTest < ActionView::TestCase
end