adding the silly hello world controller

This commit is contained in:
Dan Buch
2011-08-08 21:21:18 -04:00
parent 6b5ccdcc16
commit 875b2f1ab1
6 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
require 'test_helper'
class HelloControllerTest < ActionController::TestCase
test "should get world" do
get :world
assert_response :success
end
end

View File

@@ -0,0 +1,4 @@
require 'test_helper'
class HelloHelperTest < ActionView::TestCase
end