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.4.30 spec/spec_helper.rb
shelly-0.4.29 spec/spec_helper.rb
shelly-0.4.29.pre spec/spec_helper.rb
shelly-0.4.28 spec/spec_helper.rb
shelly-0.4.28.pre2 spec/spec_helper.rb
shelly-0.4.28.pre spec/spec_helper.rb
shelly-0.4.27 spec/spec_helper.rb
shelly-0.4.26 spec/spec_helper.rb
shelly-0.4.26.pre spec/spec_helper.rb
shelly-0.4.25 spec/spec_helper.rb
shelly-0.4.24 spec/spec_helper.rb
shelly-0.4.23 spec/spec_helper.rb
shelly-0.4.23.pre spec/spec_helper.rb
shelly-0.4.22 spec/spec_helper.rb
shelly-0.4.21 spec/spec_helper.rb
shelly-0.4.19 spec/spec_helper.rb
shelly-0.4.18 spec/spec_helper.rb
shelly-0.4.17 spec/spec_helper.rb
shelly-0.4.16 spec/spec_helper.rb
shelly-0.4.15 spec/spec_helper.rb