Sha256: 504a48682e45145e230cd8b70f3a375b66b55967885a63f15178b66c003091da

Contents?: true

Size: 951 Bytes

Versions: 11

Compression:

Stored size: 951 Bytes

Contents

#!/usr/bin/env rspec
# encoding: utf-8

BEGIN {
	require 'pathname'

	basedir = Pathname( __FILE__ ).dirname.parent
	libdir = basedir + 'lib'

	$LOAD_PATH.unshift( basedir.to_s ) unless $LOAD_PATH.include?( basedir.to_s )
	$LOAD_PATH.unshift( libdir.to_s ) unless $LOAD_PATH.include?( libdir.to_s )
}

require 'rspec'
require 'spec/lib/helpers'
require 'pg'

describe PG do

	it "knows what version of the libpq library is loaded", :postgresql_91 do
		PG.library_version.should be_an( Integer )
		PG.library_version.should >= 90100
	end


	it "knows whether or not the library is threadsafe" do
		PG.should be_threadsafe()
	end

	it "does have hierarchical error classes" do
		PG::UndefinedTable.ancestors[0,4].should == [
				PG::UndefinedTable,
				PG::SyntaxErrorOrAccessRuleViolation,
				PG::ServerError,
				PG::Error]

		PG::InvalidSchemaName.ancestors[0,3].should == [
				PG::InvalidSchemaName,
				PG::ServerError,
				PG::Error]
	end

end

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
jruby-pg-0.1-java spec/pg_spec.rb
pg_jruby-0.17.1-java spec/pg_spec.rb
pg-0.17.1-x64-mingw32 spec/pg_spec.rb
pg-0.17.1-x86-mingw32 spec/pg_spec.rb
pg-0.17.1 spec/pg_spec.rb
pg-0.17.0-x86-mingw32 spec/pg_spec.rb
pg-0.17.0-x64-mingw32 spec/pg_spec.rb
pg-0.17.0 spec/pg_spec.rb
pg-0.16.0-x86-mingw32 spec/pg_spec.rb
pg-0.16.0-x64-mingw32 spec/pg_spec.rb
pg-0.16.0 spec/pg_spec.rb