Sha256: f1ca28660b79b4881cd9856f05d954e626ace70e733992782a13411ea4bc311b
Contents?: true
Size: 518 Bytes
Versions: 3
Compression:
Stored size: 518 Bytes
Contents
#!/usr/bin/env ruby require 'pathname' require 'find' TEST_MODE = true src = Pathname.new(__FILE__).dirname + '..' + 'src' $: << src $: << src + 'ruby_ex' Dir.chdir(src) do Find.find('.') do |p| next unless p =~ /.rb$/ next if p =~ /ruby_ex/ next if p =~ /Tools\/io/ p.sub!(/^\.\//, '') puts "require #{p}" require p end end require 'test/unit/ui/yaml/testrunner' autorunner = Test::Unit::AutoRunner.new(false) autorunner.runner = Test::Unit::AutoRunner::RUNNERS[:yaml] autorunner.run
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ttk-0.1.576 | test/ttk-check |
ttk-0.1.580 | test/ttk-check |
ttk-0.1.579 | test/ttk-check |