Sha256: 317fb5df63dc0e3f9a12885a9dd8724f361bd51487e20924ef886d20313bff2e

Contents?: true

Size: 427 Bytes

Versions: 31

Compression:

Stored size: 427 Bytes

Contents

require_relative 'webserver'
require 'minitest/reporters'
require 'minitest/autorun'

class Minitest::Test

  def self.test(name, &block)
    method_name = "test_: #{name}".to_sym
    define_method method_name, &block
  end

end


Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new

require 'fileutils'
FileUtils.mkdir_p "tmp/archive"

if not ENV['DEBUG']
  require 'dply/logger'
  Dply::Logger.logger.silence!
end

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
dply-0.3.15 test/test_helper.rb
dply-0.3.14 test/test_helper.rb
dply-0.3.13 test/test_helper.rb
dply-0.3.12 test/test_helper.rb
dply-0.3.11 test/test_helper.rb
dply-0.3.10 test/test_helper.rb
dply-0.3.9 test/test_helper.rb
dply-0.3.8 test/test_helper.rb
dply-0.3.7 test/test_helper.rb
dply-0.3.6 test/test_helper.rb
dply-0.3.5 test/test_helper.rb
dply-0.3.4 test/test_helper.rb
dply-0.3.3 test/test_helper.rb
dply-0.3.2 test/test_helper.rb
dply-0.3.1 test/test_helper.rb
dply-0.3.0 test/test_helper.rb
dply-0.2.19 test/test_helper.rb
dply-0.2.18 test/test_helper.rb
dply-0.2.17 test/test_helper.rb
dply-0.2.16 test/test_helper.rb