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.3.4 spec/spec_helper.rb
shelly-0.3.3 spec/spec_helper.rb
shelly-0.3.2 spec/spec_helper.rb
shelly-0.3.1 spec/spec_helper.rb
shelly-0.3.0 spec/spec_helper.rb
shelly-0.2.28 spec/spec_helper.rb
shelly-0.2.27 spec/spec_helper.rb
shelly-0.2.26 spec/spec_helper.rb
shelly-0.2.25 spec/spec_helper.rb
shelly-0.2.24 spec/spec_helper.rb
shelly-0.2.23 spec/spec_helper.rb
shelly-0.2.22 spec/spec_helper.rb
shelly-0.2.21 spec/spec_helper.rb
shelly-0.2.20 spec/spec_helper.rb
shelly-0.2.19 spec/spec_helper.rb
shelly-0.2.18 spec/spec_helper.rb
shelly-0.2.17 spec/spec_helper.rb
shelly-0.2.16 spec/spec_helper.rb
shelly-0.2.15 spec/spec_helper.rb
shelly-0.2.14 spec/spec_helper.rb