Sha256: cfc43208c5efd9c2fdb91c211bdfda604f82be6759c7652b6e1acd2df2a459b3

Contents?: true

Size: 986 Bytes

Versions: 5

Compression:

Stored size: 986 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.treat_symbols_as_metadata_keys_with_true_values = true
  config.run_all_when_everything_filtered = true
  config.filter_run :focus
  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"
end

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
sandthorn_driver_sequel-1.0.4 spec/spec_helper.rb
sandthorn_driver_sequel-1.0.3 spec/spec_helper.rb
sandthorn_driver_sequel-1.0.2 spec/spec_helper.rb
sandthorn_driver_sequel-1.0.1 spec/spec_helper.rb
sandthorn_driver_sequel-1.0.0 spec/spec_helper.rb