Sha256: 0c78ab87b6474b439f276e3e541c9a4066ddfc765727ceba5ed0a8303e8fc0a5

Contents?: true

Size: 472 Bytes

Versions: 3

Compression:

Stored size: 472 Bytes

Contents

# encoding: utf-8
$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))

if ENV['coverage']
  raise "simplecov only works on Ruby 1.9" unless RUBY_VERSION =~ /^1\.9/

  require 'simplecov'
  SimpleCov.start { add_filter "spec/" }
end

require 'rspec'
require 'gametel'

def calabash_platform(gametel)
  platform = Gametel::Platforms::Calabash.new
  gametel.instance_variable_set(:@platform, platform)
  platform
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gametel-0.3 spec/spec_helper.rb
gametel-0.2 spec/spec_helper.rb
gametel-0.1 spec/spec_helper.rb