Sha256: d089603a423fd3defb94a42d0b7807638fcfa8b98c571ffdfa63d94f3bffc3e1

Contents?: true

Size: 657 Bytes

Versions: 86

Compression:

Stored size: 657 Bytes

Contents

if ENV["COVERAGE"]
  require "simplecov"
  SimpleCov.start
end

# Psych is required here to make sure it will be used as default
# yaml engine when running tests (required by cloudfile_spec:49)
require 'psych' if RUBY_VERSION >= "1.9"
require "rspec"
require "shelly"
require "helpers"
require "input_faker"
require "fakefs/spec_helpers"
require "fakeweb"
require "launchy"

ENV['THOR_COLUMNS'] = "180"
FakeWeb.allow_net_connect = false

RSpec.configure do |config|
  config.include RSpec::Helpers
  config.include FakeFS::SpecHelpers
end

# FakeFS doesn't support executable? class method
class FakeFS::File
  def self.executable?(file)
    true
  end
end

Version data entries

86 entries across 86 versions & 1 rubygems

Version Path
shelly-0.5.7 spec/spec_helper.rb
shelly-0.5.6 spec/spec_helper.rb
shelly-0.5.5 spec/spec_helper.rb
shelly-0.5.4 spec/spec_helper.rb
shelly-0.5.3 spec/spec_helper.rb
shelly-0.5.2 spec/spec_helper.rb
shelly-0.5.1 spec/spec_helper.rb
shelly-0.5.0 spec/spec_helper.rb
shelly-0.4.42 spec/spec_helper.rb
shelly-0.4.41 spec/spec_helper.rb
shelly-0.4.40 spec/spec_helper.rb
shelly-0.4.39 spec/spec_helper.rb
shelly-0.4.38 spec/spec_helper.rb
shelly-0.4.37 spec/spec_helper.rb
shelly-0.4.36 spec/spec_helper.rb
shelly-0.4.35 spec/spec_helper.rb
shelly-0.4.34 spec/spec_helper.rb
shelly-0.4.33 spec/spec_helper.rb
shelly-0.4.32 spec/spec_helper.rb
shelly-0.4.31 spec/spec_helper.rb