Sha256: 00f689f416883c71142fdd2195c6c2e17613e8c0d39806a6e3fffe5bfb52d63c

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 KB

Contents

require 'rubygems'
require 'bundler'

begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))

require "active_record"
require "will_paginate"
require "mongoid"
require 'datagrid'
require "discover"
begin
  require 'ruby-debug'
rescue LoadError
end
require 'rspec'
require "logger"

File.open('spec.log', "w").close
TEST_LOGGER = Logger.new('spec.log')


RSpec.configure do |config|


  config.after(:each) do
    #TODO better database truncation
    Group.delete_all
    Entry.delete_all
    MongoidEntry.delete_all

  end


end



# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir["#{File.dirname(__FILE__)}/support/schema.rb"].each {|f| require f}
Dir["#{File.dirname(__FILE__)}/support/mongoid.rb"].each {|f| require f}
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
datagrid-0.5.2 spec/spec_helper.rb
datagrid-0.5.1 spec/spec_helper.rb
datagrid-0.5.0 spec/spec_helper.rb