Sha256: 5ec68195eb44af1d00282932d8017c016c1799c99fa7c11bbdd808b30c6261a9

Contents?: true

Size: 691 Bytes

Versions: 1

Compression:

Stored size: 691 Bytes

Contents

# encoding: UTF-8

unless $LOAD_PATH.include?(File.dirname(__FILE__))
  $LOAD_PATH.unshift(File.dirname(__FILE__))
end

unless $LOAD_PATH.include?(File.expand_path(File.dirname(__FILE__) + '/../lib'))
  $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + '/../lib'))
end

begin
  require 'spec'
  require 'spec/autorun'
rescue LoadError
  abort <<-ERROR
Unexpected LoadError exception caught in #{__FILE__} on #{__LINE__}

This file depends on the rspec library, which is not available.
You may install the library via rubygems with: sudo gem install rspec
  ERROR
end

require 'plow'

FIXTURES_PATH = File.dirname(__FILE__) + '/fixtures'

Spec::Runner.configure do |config|
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
plow-0.1.0 spec/spec_helper.rb