Sha256: 46ee8020a0710bbac231c4ad185856aed3f734d7ec2e0a216a7f2c714d374719

Contents?: true

Size: 518 Bytes

Versions: 15

Compression:

Stored size: 518 Bytes

Contents

if ENV['COVERAGE']
	begin
		require 'simplecov'
		
		SimpleCov.start do
			add_filter "/spec/"
		end
		
		if ENV['TRAVIS']
			require 'coveralls'
			Coveralls.wear!
		end
	rescue LoadError
		warn "Could not load simplecov: #{$!}"
	end
end

require 'bundler/setup'
require 'utopia'

require 'async/rspec'

RSpec.configure do |config|
	# Enable flags like --only-failures and --next-failure
	config.example_status_persistence_file_path = '.rspec_status'

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

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
async-websocket-0.14.0 examples/utopia/spec/spec_helper.rb
async-websocket-0.13.1 examples/utopia/spec/spec_helper.rb
async-websocket-0.13.0 examples/utopia/spec/spec_helper.rb
async-websocket-0.12.2 examples/utopia/spec/spec_helper.rb
async-websocket-0.12.1 examples/utopia/spec/spec_helper.rb
async-websocket-0.12.0 examples/utopia/spec/spec_helper.rb
async-websocket-0.11.1 examples/utopia/spec/spec_helper.rb
async-websocket-0.11.0 examples/utopia/spec/spec_helper.rb
async-websocket-0.10.0 examples/utopia/spec/spec_helper.rb
async-websocket-0.9.0 examples/utopia/spec/spec_helper.rb
async-websocket-0.8.0 examples/utopia/spec/spec_helper.rb
async-websocket-0.7.0 examples/utopia/spec/spec_helper.rb
async-websocket-0.6.1 examples/utopia/spec/spec_helper.rb
async-websocket-0.6.0 examples/utopia/spec/spec_helper.rb
async-websocket-0.5.0 examples/utopia/spec/spec_helper.rb