summaryrefslogtreecommitdiff
path: root/jni/ruby/lib/rake/runtest.rb
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/lib/rake/runtest.rb
Fresh start
Diffstat (limited to 'jni/ruby/lib/rake/runtest.rb')
-rw-r--r--jni/ruby/lib/rake/runtest.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/jni/ruby/lib/rake/runtest.rb b/jni/ruby/lib/rake/runtest.rb
new file mode 100644
index 0000000..4774b0e
--- /dev/null
+++ b/jni/ruby/lib/rake/runtest.rb
@@ -0,0 +1,27 @@
+require 'test/unit'
+require 'test/unit/assertions'
+require 'rake/file_list'
+
+module Rake
+ include Test::Unit::Assertions
+
+ ##
+ # Deprecated way of running tests in process, but only for Test::Unit.
+ #--
+ # TODO: Remove in rake 11
+
+ def run_tests(pattern='test/test*.rb', log_enabled=false) # :nodoc:
+ FileList.glob(pattern).each do |fn|
+ $stderr.puts fn if log_enabled
+ begin
+ require fn
+ rescue Exception => ex
+ $stderr.puts "Error in #{fn}: #{ex.message}"
+ $stderr.puts ex.backtrace
+ assert false
+ end
+ end
+ end
+
+ extend self
+end