Sha256: 709e4ac28b047e4df0783c388e4477d82f0b4bce3922df6357bfa4e724f1908e

Contents?: true

Size: 646 Bytes

Versions: 10

Compression:

Stored size: 646 Bytes

Contents

require 'spec_helper'
require 'mongoid'

# puts "version: #{Mongoid::VERSION}"

require 'timespan/mongoid/mongoid_setup'

Mongoid.configure do |config|
  Mongoid::VersionSetup.configure config
end

if RUBY_VERSION >= '1.9.2'
  YAML::ENGINE.yamler = 'syck'
end

RSpec.configure do |config|
  # config.mock_with(:mocha)

  config.before(:each) do
    Mongoid.purge!
    # Mongoid.database.collections.each do |collection|
    #   unless collection.name =~ /^system\./
    #     collection.remove
    #   end
    # end
  end
end

require 'timespan/mongoid'

def load_models!
  require "timespan/mongoid/models/account_#{Mongoid::MAJOR_VERSION}x"
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
timespan-0.6.0 spec/timespan/mongoid/spec_helper.rb
timespan-0.5.9 spec/timespan/mongoid/spec_helper.rb
timespan-0.5.7 spec/timespan/mongoid/spec_helper.rb
timespan-0.5.6.1 spec/timespan/mongoid/spec_helper.rb
timespan-0.5.6 spec/timespan/mongoid/spec_helper.rb
timespan-0.5.5 spec/timespan/mongoid/spec_helper.rb
timespan-0.5.4 spec/timespan/mongoid/spec_helper.rb
timespan-0.5.3 spec/timespan/mongoid/spec_helper.rb
timespan-0.5.2 spec/timespan/mongoid/spec_helper.rb
timespan-0.5.1 spec/timespan/mongoid/spec_helper.rb