aboutsummaryrefslogtreecommitdiffstats
path: root/railties/helpers/test_helper.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-06 14:01:52 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-06 14:01:52 +0000
commit2581806abd9cefa0beba092f66bf5bb8cb950064 (patch)
tree2e3d46c840444079739f598806004a33a05fc6e4 /railties/helpers/test_helper.rb
parentcbb65c39ec22a57d31dc2b94a0a385ad461045f2 (diff)
downloadrails-2581806abd9cefa0beba092f66bf5bb8cb950064.tar.gz
rails-2581806abd9cefa0beba092f66bf5bb8cb950064.tar.bz2
rails-2581806abd9cefa0beba092f66bf5bb8cb950064.zip
Added web_service generator (run ./script/generate web_service for help) #776 [Leon Bredt]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@850 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/helpers/test_helper.rb')
-rw-r--r--railties/helpers/test_helper.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/helpers/test_helper.rb b/railties/helpers/test_helper.rb
index e560caa79d..d177ec3515 100644
--- a/railties/helpers/test_helper.rb
+++ b/railties/helpers/test_helper.rb
@@ -5,10 +5,11 @@ require 'application'
require 'test/unit'
require 'active_record/fixtures'
require 'action_controller/test_process'
+require 'action_web_service/test_invoke'
require 'breakpoint'
def create_fixtures(*table_names)
Fixtures.create_fixtures(File.dirname(__FILE__) + "/fixtures", table_names)
end
-Test::Unit::TestCase.fixture_path = File.dirname(__FILE__) + "/fixtures/" \ No newline at end of file
+Test::Unit::TestCase.fixture_path = File.dirname(__FILE__) + "/fixtures/"