Sha256: bd8a469b29801f8d74ed5728f43024e22d85a776df13153d773ed390cb535d98

Contents?: true

Size: 539 Bytes

Versions: 7

Compression:

Stored size: 539 Bytes

Contents

# encoding: utf-8

require 'adamantium'
require 'spec'
require 'spec/autorun'

# require spec support files and shared behavior
Dir[File.expand_path('../{support,shared}/**/*.rb', __FILE__)].each do |file|
  require file
end

Spec::Runner.configure do |config|
end

if RUBY_VERSION >= '1.9' and ENV['COVERAGE'] == 'true'
  require 'simplecov'
  SimpleCov.start do
    command_name 'spec:unit'
    add_filter   'spec'
  end
end

# change the heckle timeout to be 5 seconds
if defined?(::Heckle)
  class ::Heckle
    @@timeout = 5
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
adamantium-0.0.8 spec/spec_helper.rb
adamantium-0.0.7 spec/spec_helper.rb
adamantium-0.0.6 spec/spec_helper.rb
adamantium-0.0.5 spec/spec_helper.rb
adamantium-0.0.4 spec/spec_helper.rb
adamantium-0.0.3 spec/spec_helper.rb
adamantium-0.0.2 spec/spec_helper.rb