Sha256: 0cfd53b8084a98bc42a7b2392f019457b24772ac8a268ac42909690eb5c12112
Contents?: true
Size: 1.44 KB
Versions: 2
Compression:
Stored size: 1.44 KB
Contents
require 'spec_helper' require 'apartment/adapters/postgresql_adapter' describe Apartment::Adapters::PostgresqlAdapter do unless defined?(JRUBY_VERSION) let(:config){ Apartment::Test.config['connections']['postgresql'].symbolize_keys } subject{ Apartment::Database.postgresql_adapter config } context "using schemas" do before{ Apartment.use_schemas = true } # Not sure why, but somehow using let(:database_names) memoizes for the whole example group, not just each test def database_names ActiveRecord::Base.connection.execute("SELECT nspname FROM pg_namespace;").collect { |row| row['nspname'] } end let(:default_database) { subject.process { ActiveRecord::Base.connection.schema_search_path.gsub('"', '') } } it_should_behave_like "a generic apartment adapter" it_should_behave_like "a schema based apartment adapter" end context "using connections" do before{ Apartment.use_schemas = false } # Not sure why, but somehow using let(:database_names) memoizes for the whole example group, not just each test def database_names connection.execute("select datname from pg_database;").collect { |row| row['datname'] } end let(:default_database) { subject.process { ActiveRecord::Base.connection.current_database } } it_should_behave_like "a generic apartment adapter" it_should_behave_like "a connection based apartment adapter" end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
apartment-0.22.1 | spec/adapters/postgresql_adapter_spec.rb |
apartment-0.22.0 | spec/adapters/postgresql_adapter_spec.rb |