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