Sha256: 01c08be2115ffa1eaae66d7cf0a0e47815c36a1f8b6c34fb2b2021b8e91af591
Contents?: true
Size: 1.4 KB
Versions: 4
Compression:
Stored size: 1.4 KB
Contents
if defined?(JRUBY_VERSION) require 'spec_helper' require 'lib/apartment/adapters/jdbc_postgresql_adapter' describe Apartment::Adapters::JDBCPostgresqlAdapter, database: :postgresql do subject { Apartment::Database.jdbc_postgresql_adapter config.symbolize_keys } context "using schemas" do before { Apartment.use_schemas = true } # Not sure why, but somehow using let(:tenant_names) memoizes for the whole example group, not just each test def tenant_names ActiveRecord::Base.connection.execute("SELECT nspname FROM pg_namespace;").collect { |row| row['nspname'] } end let(:default_tenant) { 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 databases" do before { Apartment.use_schemas = false } # Not sure why, but somehow using let(:tenant_names) memoizes for the whole example group, not just each test def tenant_names connection.execute("select datname from pg_database;").collect { |row| row['datname'] } end let(:default_tenant) { 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
4 entries across 4 versions & 1 rubygems