Skip to content

Commit

Permalink
4.1 Hello, Rails!
Browse files Browse the repository at this point in the history
generate Say controller
  • Loading branch information
kyanny committed Jan 19, 2010
1 parent 7fbf3b1 commit 7df6431
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions demo/app/controllers/say_controller.rb
@@ -0,0 +1,2 @@
class SayController < ApplicationController
end
2 changes: 2 additions & 0 deletions demo/app/helpers/say_helper.rb
@@ -0,0 +1,2 @@
module SayHelper
end
8 changes: 8 additions & 0 deletions demo/test/functional/say_controller_test.rb
@@ -0,0 +1,8 @@
require 'test_helper'

class SayControllerTest < ActionController::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
end
end

0 comments on commit 7df6431

Please sign in to comment.