Sha256: fe7cc01597cfa98f35e6cda36c6e57b491a0d6449c14ed5e796be78fef60832f
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
require 'bundler/gem_tasks' task :default => :test task :test do matchers = { 'minitest-2.0' => [/6 tests, 9 assertions, 1 failures, 0 errors, 0 skips/m], 'rspec-2.6' => [/\n\.\.\.\.F\.\.\.\n/m], 'test-unit' => [/\n\.\.\.F\.\.\n/m, /test_out_of_order\(TestEMVentually\)/m] } matchers.each do |type, matcher| STDOUT.sync = true Dir.chdir("./test/#{type}") do print "Testing #{type}#{' ' * (22 - type.size )}" fork { ENV['BUNDLE_GEMFILE'] = File.expand_path("./Gemfile") out = `bundle && bundle exec rake 2>&1` if matcher.all?{|m|out[m]} exit else puts out exit 1 end } _, status = Process.wait2 puts status.success? ? "PASSED" : "FAILED" end end # test README.md require 'minitest/autorun' require 'eventmachine' $LOAD_PATH << 'lib' require 'em-ventually' class ReadmeTest < MiniTest::Unit::TestCase include EM::Ventually readme = File.read('./README.md') readme.scan(/~~~~~ \{ruby\}\n(.*?)~~~~~/m).each do |block| class_eval(block.join) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
em-ventually-0.1.1 | Rakefile |