Sha256: 24bb47829cbaa262fd148e14702eab1006619bc201d952ecdb4382950bab470b
Contents?: true
Size: 321 Bytes
Versions: 14
Compression:
Stored size: 321 Bytes
Contents
#!/usr/bin/env ruby module Invokr module Runner extend self def run! root = File.expand_path '../..', __FILE__ load File.join(root, 'test/test_helper.rb') Dir[File.join(root, 'test/**/*_test.rb')].each do |test_file| load test_file end end end end Invokr::Runner.run!
Version data entries
14 entries across 14 versions & 1 rubygems