mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
594063f23c
to better model for API methods, and improve the ability to generate protocol requests/response, will be required by upcoming scaffolding. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1030 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
6 lines
272 B
Ruby
Executable file
6 lines
272 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
require 'test/unit'
|
|
$:.unshift(File.dirname(__FILE__) + '/../lib')
|
|
args = Dir[File.join(File.dirname(__FILE__), '*_test.rb')] + Dir[File.join(File.dirname(__FILE__), 'ws/*_test.rb')]
|
|
(r = Test::Unit::AutoRunner.new(true)).process_args(args)
|
|
exit r.run
|