Sha256: da210cc6dd7e3cba22b26dc541786bcc9e6a41de8cd06450e2fac1abe432db6c
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
require 'coveralls' require 'sandthorn_driver_sequel' require 'sandthorn_driver_sequel/migration' require 'ap' require 'uuidtools' Bundler.require Coveralls.wear! # 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.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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sandthorn_driver_sequel-1.1.0 | spec/spec_helper.rb |
sandthorn_driver_sequel-1.0.6 | spec/spec_helper.rb |