Sha256: a413b30972eefc421c3eb070e2ed0bde0bd774e006ea55f4acce7c428d1b0d7f

Contents?: true

Size: 1022 Bytes

Versions: 4

Compression:

Stored size: 1022 Bytes

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'
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"
  #"postgres://morganhallgren@localhost:5432/test_1"
end

def event_store context: :test
  SandthornDriverSequel::EventStore.new url: event_store_url, context: context
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sandthorn_driver_sequel-2.1.1 spec/spec_helper.rb
sandthorn_driver_sequel-2.1.0 spec/spec_helper.rb
sandthorn_driver_sequel-2.0.1 spec/spec_helper.rb
sandthorn_driver_sequel-2.0.0 spec/spec_helper.rb