Sha256: 6fde76bd206b8dacdb56630f274709a792bbc658a100eecf23a934a03c420392

Contents?: true

Size: 539 Bytes

Versions: 16

Compression:

Stored size: 539 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 brazenhead_platform(gametel)
  platform = Gametel::Platforms::BrazenheadPlatform.new
  gametel.instance_variable_set(:@platform, platform)
  platform.stub(:accumulator).and_return(accumulator)
  platform
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
gametel-0.6 spec/spec_helper.rb
gametel-0.5.9.3 spec/spec_helper.rb
gametel-0.5.9.2 spec/spec_helper.rb
gametel-0.5.9.1 spec/spec_helper.rb
gametel-0.5.9 spec/spec_helper.rb
gametel-0.5.8.1 spec/spec_helper.rb
gametel-0.5.8 spec/spec_helper.rb
gametel-0.5.7 spec/spec_helper.rb
gametel-0.5.6 spec/spec_helper.rb
gametel-0.5.5 spec/spec_helper.rb
gametel-0.5.4 spec/spec_helper.rb
gametel-0.5.3 spec/spec_helper.rb
gametel-0.5.2 spec/spec_helper.rb
gametel-0.5.1 spec/spec_helper.rb
gametel-0.5 spec/spec_helper.rb
gametel-0.4 spec/spec_helper.rb