Sha256: a59271c6ae65b7f7d6ec6fb0b80b520302cd1f7d35a885b539df43d4ed04d1e4
Contents?: true
Size: 447 Bytes
Versions: 2
Compression:
Stored size: 447 Bytes
Contents
require 'rubygems' require 'guard/delayed' require "rspec" ENV["GUARD_ENV"] = 'test' Dir["#{File.expand_path('..', __FILE__)}/support/**/*.rb"].each { |f| require f } RSpec.configure do |config| config.filter_run focus: true config.run_all_when_everything_filtered = true config.before(:each) do ::Guard::Notifier.stub(:notify).and_return(true) @fixture_path = Pathname.new(File.expand_path('../fixtures/', __FILE__)) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
guard-delayed-0.3.1 | spec/spec_helper.rb |
guard-delayed-0.3.0 | spec/spec_helper.rb |