Skip to content

Commit

Permalink
Add performance test generator
Browse files Browse the repository at this point in the history
  • Loading branch information
lifo committed Jun 19, 2008
1 parent 10c581a commit 2e232af
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
@@ -0,0 +1,8 @@
Description:
Stubs out a new performance test. Pass the name of the test, either
CamelCased or under_scored, as an argument. The new test class is
generated in test/performance/testname_test.rb

Example:
`./script/generate performance_test GeneralStories` creates a GeneralStories
performance test in test/performance/general_stories_test.rb
@@ -0,0 +1,16 @@
class PerformanceTestGenerator < Rails::Generator::NamedBase
default_options :skip_migration => false

def manifest
record do |m|
# Check for class naming collisions.
m.class_collisions class_path, class_name, "#{class_name}Test"

# performance test directory
m.directory File.join('test/performance', class_path)

# performance test stub
m.template 'performance_test.rb', File.join('test/performance', class_path, "#{file_name}_test.rb")
end
end
end
@@ -0,0 +1,8 @@
require 'performance/test_helper'

class <%= class_name %>Test < ActionController::PerformanceTest
# Replace this with your real tests.
def test_homepage
get '/'
end
end

0 comments on commit 2e232af

Please sign in to comment.