Sha256: ee4316468a6f6494046cac09c8fb19a0bb7c543ae8f628e2301458271a3b1749
Contents?: true
Size: 1.38 KB
Versions: 9
Compression:
Stored size: 1.38 KB
Contents
require 'rubygems' require 'logger' unless Object.const_defined?('Sequel') $:.unshift(File.join(File.dirname(File.expand_path(__FILE__)), "../../lib/")) require 'sequel' end begin require File.join(File.dirname(File.dirname(File.expand_path(__FILE__))), 'spec_config.rb') rescue LoadError end if ENV['SEQUEL_COLUMNS_INTROSPECTION'] Sequel.extension :columns_introspection Sequel::Dataset.introspect_all_columns end Sequel::Model.cache_anonymous_models = false class Sequel::Database def log_duration(duration, message) log_info(message) end end (defined?(RSpec) ? RSpec::Core::ExampleGroup : Spec::Example::ExampleGroup).class_eval do def log begin INTEGRATION_DB.loggers << Logger.new(STDOUT) yield ensure INTEGRATION_DB.loggers.pop end end def self.cspecify(message, *checked, &block) return specify(message, &block) if ENV['SEQUEL_NO_PENDING'] pending = false checked.each do |c| case c when INTEGRATION_DB.adapter_scheme pending = c when Proc pending = c if c.first.call(INTEGRATION_DB) when Array pending = c if c.first == INTEGRATION_DB.adapter_scheme && c.last == INTEGRATION_DB.call(INTEGRATION_DB) end end if pending specify(message){pending("Not yet working on #{Array(pending).join(', ')}", &block)} else specify(message, &block) end end end
Version data entries
9 entries across 9 versions & 2 rubygems