Sha256: b9dd4976c8125fc83d586bcf7f361fcbc7ec8252b1731884a733f2039fa92fbb

Contents?: true

Size: 385 Bytes

Versions: 1

Compression:

Stored size: 385 Bytes

Contents

require 'coverage_helper'
require 'simple_profiler'
require 'minitest/autorun'
require 'turn'
require 'pry-nav'

Turn.config do |c|
  c.format = :pretty
  c.natural = true
  c.ansi = true
end

class Minitest::Spec

  let(:temp_path) {File.expand_path "./tmp", File.dirname(__FILE__)}

  before do
    FileUtils.mkpath temp_path
  end

  after do
    FileUtils.rm_rf temp_path
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
simple_profiler-0.1.0 spec/minitest_helper.rb