added a tutorial controller to handle all deez toots

This commit is contained in:
Ken Johnson
2013-04-24 19:20:51 -04:00
parent 9c4a19d3d1
commit c003bd8a9a
5 changed files with 19 additions and 14 deletions
+2
View File
@@ -0,0 +1,2 @@
class TutorialsController < ApplicationController
end
+2
View File
@@ -0,0 +1,2 @@
module TutorialsHelper
end
+4 -14
View File
@@ -83,29 +83,19 @@
<li class="submenu">
<a href="#" class="selected">
<div class="icon">
<span class="fs1" aria-hidden="true" data-icon="&#xe0aa;"></span>
<span class="fs1" aria-hidden="true" data-icon="&#xe0b8;"></span>
</div>
Extras
</a>
<ul>
<li>
<a href="#">Edit Profile</a>
<a href="#">Guard</a>
</li>
<li>
<a href="#">Calendar</a>
<a href="#">Session Secret</a>
</li>
<li>
<a href="#">Invoice</a>
</li>
<li>
<a href="#">Login</a>
</li>
<li>
<a href="#">Error</a>
</li>
<li>
<a href="#">Help</a>
<a href="#">DB Sessions</a>
</li>
</ul>
</li>
@@ -0,0 +1,7 @@
require 'test_helper'
class TutorialsControllerTest < ActionController::TestCase
# test "the truth" do
# assert true
# end
end
@@ -0,0 +1,4 @@
require 'test_helper'
class TutorialsHelperTest < ActionView::TestCase
end