Sha256: 541907a77c4afe94b372bb382f0fd9ad9a202c13fe822ab0717ef75588ac51ee

Contents?: true

Size: 591 Bytes

Versions: 3

Compression:

Stored size: 591 Bytes

Contents

# encoding: utf-8

require File.expand_path(File.join(File.dirname(__FILE__), 'spec_helper'))
require 'data_objects/spec/connection_spec'

describe DataObjects::SqlServer::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

3 entries across 3 versions & 1 rubygems

Version Path
do_sqlserver-0.10.3-java spec/connection_spec.rb
do_sqlserver-0.10.2-java spec/connection_spec.rb
do_sqlserver-0.10.1-java spec/connection_spec.rb