Sha256: c6861c0e8cfc86a03a28d61ca8ecc454fd547ea7aa7e26ff0cb7e146c7543c98
Contents?: true
Size: 626 Bytes
Versions: 1
Compression:
Stored size: 626 Bytes
Contents
require 'coveralls' require 'simplecov' SimpleCov.start do add_filter 'spec' end Coveralls.wear! $LOAD_PATH.push File.expand_path("../../lib", __FILE__) require File.dirname(__FILE__) + '/../lib/simctl.rb' if ENV['TRAVIS'] SimCtl.default_timeout = 300 end unless ENV['CUSTOM_DEVICE_SET_PATH'] == 'false' SimCtl.device_set_path = Dir.mktmpdir 'foo bar' end RSpec.configure do |config| config.tty = true config.expect_with :rspec do |c| c.syntax = :expect end config.mock_with :rspec do |c| c.syntax = :expect end def with_rescue(&block) begin block.class rescue end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
simctl-1.5.8 | spec/spec_helper.rb |