Sha256: a98685036414d2c32a70de92bc5a52b9e1be5b665109e88e55753f71eb134203

Contents?: true

Size: 467 Bytes

Versions: 22

Compression:

Stored size: 467 Bytes

Contents

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

require "rspec"
require "shelly"
require "helpers"
require "input_faker"
require "fakefs/spec_helpers"
require "fakeweb"

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

22 entries across 22 versions & 1 rubygems

Version Path
shelly-0.1.23 spec/spec_helper.rb
shelly-0.1.22 spec/spec_helper.rb
shelly-0.1.21 spec/spec_helper.rb
shelly-0.1.21.pre spec/spec_helper.rb
shelly-0.1.20 spec/spec_helper.rb
shelly-0.1.19 spec/spec_helper.rb
shelly-0.1.18 spec/spec_helper.rb
shelly-0.1.17 spec/spec_helper.rb
shelly-0.1.16 spec/spec_helper.rb
shelly-0.1.15 spec/spec_helper.rb
shelly-0.1.14 spec/spec_helper.rb
shelly-0.1.13 spec/spec_helper.rb
shelly-0.1.12 spec/spec_helper.rb
shelly-0.1.11 spec/spec_helper.rb
shelly-0.1.10 spec/spec_helper.rb
shelly-0.1.9 spec/spec_helper.rb
shelly-0.1.8 spec/spec_helper.rb
shelly-0.1.7 spec/spec_helper.rb
shelly-0.1.6 spec/spec_helper.rb
shelly-0.1.5 spec/spec_helper.rb