Sha256: c4be6953a68ef2aaa124bba99ec0c4481858dd3a3a10408c9abf304d27979aad

Contents?: true

Size: 1.14 KB

Versions: 1

Compression:

Stored size: 1.14 KB

Contents

# Copyright (C) 2009-2013 MongoDB, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require 'test_helper'
require 'shared/authentication/basic_auth_shared'
require 'shared/authentication/sasl_plain_shared'
require 'shared/authentication/bulk_api_auth_shared'
require 'shared/authentication/gssapi_shared'


class AuthenticationTest < Test::Unit::TestCase
  include Mongo
  include BasicAuthTests
  include SASLPlainTests
  include BulkAPIAuthTests
  include GSSAPITests

  def setup
    @client    = standard_connection
    @admin     = @client['admin']
    @version   = @client.server_version
    @db        = @client['ruby-test']
    @host_info = host_port
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mongo-1.11.1 test/functional/authentication_test.rb