Sha256: 9df85b6a0963ddb2fd0cf7d955ae29bc1cd0c1d0563748f88a57fc63d8b1421d

Contents?: true

Size: 369 Bytes

Versions: 4

Compression:

Stored size: 369 Bytes

Contents

require 'rspec'
require 'guard/mocha_node'

RSpec.configure do |config|
  config.color_enabled = true
  config.filter_run :focus => true
  config.run_all_when_everything_filtered = true

  config.before do
    ENV["GUARD_ENV"] = "test"
    @project_path = Pathname.new(File.expand_path("../../", __FILE__))
  end

  config.after do
    ENV["GUARD_ENV"] = nil
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
guard-mocha-node-0.0.6 spec/spec_helper.rb
guard-mocha-node-0.0.5 spec/spec_helper.rb
guard-mocha-node-0.0.4 spec/spec_helper.rb
guard-mocha-node-0.0.3 spec/spec_helper.rb