aboutsummaryrefslogtreecommitdiffstats
path: root/test.rb
diff options
context:
space:
mode:
authorToshiaki Asai <qtoship@gmail.com>2013-01-24 01:09:05 +0900
committerToshiaki Asai <qtoship@gmail.com>2013-01-24 01:09:05 +0900
commit796984679d6c490513172aed26a199a3c1677347 (patch)
tree89ced6706ebc22c3cd974e9fe7a562acb9f267b0 /test.rb
parent657fe65aca8ab6ed2e08b1c3fac684763f30e937 (diff)
downloadmikutter-796984679d6c490513172aed26a199a3c1677347.tar.gz
/test/core のテストを使うように変更した
Diffstat (limited to 'test.rb')
-rwxr-xr-xtest.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test.rb b/test.rb
index e6862c7b..20b720c9 100755
--- a/test.rb
+++ b/test.rb
@@ -1,11 +1,11 @@
-# -*- coding: utf-8 -*-
#! /usr/bin/ruby
+# -*- coding: utf-8 -*-
successed = []
failed = []
processes = {}
-Dir.glob(File.dirname(__FILE__) + '/core/test/test_*').each{ |f|
+Dir.glob(File.dirname(__FILE__) + '/test/core/test_*').each{ |f|
processes[fork { require File.expand_path(f) }] = f }
Process.waitall.each{ |pid, stat|