Sha256: 3ba4204b743ec508bb83c4dc3012dfaa4fd7ff00ee7fe06509a148e748c6e5f2

Contents?: true

Size: 933 Bytes

Versions: 1

Compression:

Stored size: 933 Bytes

Contents

require 'coveralls'
Coveralls.wear! do
  add_filter 'spec'
end

require 'cany'
require 'deb_control'
require 'tmpdir'
require 'timecop'

Dir[File.expand_path('spec/support/**/*.rb')].each {|f| require f}

RSpec.configure do |config|
  # ## Mock Framework
  #
  # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
  #
  # config.mock_with :mocha
  # config.mock_with :flexmock
  # config.mock_with :rr

  # Run specs in random order to surface order dependencies. If you find an
  # order dependency and want to debug it, you can fix the order by providing
  # the seed, which is printed after each run.
  #     --seed 1234
  config.order = 'random'

  config.expect_with :rspec do |c|
    # Only allow expect syntax
    c.syntax = :expect
  end

  config.before(:each) do
    @executed_programs = []
    allow_any_instance_of(Cany::Recipe).to receive(:exec) { |*args| @executed_programs << args }
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cany-0.0.2 spec/spec_helper.rb