Sha256: 659374bb918129cffc562fc7de5dc5f58f40bba17628ba799ff8a362d8c5e7df

Contents?: true

Size: 1.07 KB

Versions: 6

Compression:

Stored size: 1.07 KB

Contents

require 'sandthorn_driver_sequel'
require 'sandthorn_driver_sequel/migration'
require 'ap'
require 'uuidtools'

# This file was generated by the `rspec --init` command. Conventionally, all
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
# Require this file using `require "spec_helper"` to ensure that it is only
# loaded once.
#
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
  config.run_all_when_everything_filtered = true
  config.filter_run :focus
  config.filter_run_excluding benchmark: true
  config.order = 'random'
  # config.before(:each) do
  #   prepare_for_test
  # end
  Struct.new("AggregateMock", :aggregate_id, :aggregate_version)
end
def prepare_for_test context: :test
  migrator = SandthornDriverSequel::Migration.new url: event_store_url, context: context
  migrator.migrate!
  migrator.send(:clear_for_test)
end

def event_store_url
  "sqlite://spec/db/event_store.sqlite3"
end

def event_store context: :test
  SandthornDriverSequel.driver_from_url url: event_store_url, context: context
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
sandthorn_driver_sequel-4.1.0 spec/spec_helper.rb
sandthorn_driver_sequel-4.0.0 spec/spec_helper.rb
sandthorn_driver_sequel-3.2.1 spec/spec_helper.rb
sandthorn_driver_sequel-3.2.0 spec/spec_helper.rb
sandthorn_driver_sequel-3.1.0 spec/spec_helper.rb
sandthorn_driver_sequel-3.0.0 spec/spec_helper.rb