Sha256: 40cbcb13cb015b044f514e0a297de96fd380d8a887e8ded7ab73c363cb65898b
Contents?: true
Size: 587 Bytes
Versions: 12
Compression:
Stored size: 587 Bytes
Contents
# encoding: utf-8 require File.expand_path(File.join(File.dirname(__FILE__), 'spec_helper')) require 'data_objects/spec/connection_spec' describe DataObjects::Oracle::Connection do before do @driver = CONFIG.scheme @user = CONFIG.user @password = CONFIG.pass @host = CONFIG.host @port = CONFIG.port @database = CONFIG.database end behaves_like 'a Connection' behaves_like 'a Connection with authentication support' # FIXME: behaves_like 'a Connection with JDBC URL support' if JRUBY behaves_like 'a Connection via JDNI' if JRUBY end
Version data entries
12 entries across 12 versions & 1 rubygems