Sha256: c3d8123a90cc615fdc52eba491cf82667dd6fe2ca410e231a7987023c10d2a4e

Contents?: true

Size: 688 Bytes

Versions: 6

Compression:

Stored size: 688 Bytes

Contents

require_relative '../../test_helper'

class TestBERArrayExtension < Test::Unit::TestCase
  def test_control_code_array
    control_codes = []
    control_codes << ['1.2.3'.to_ber, true.to_ber].to_ber_sequence
    control_codes << ['1.7.9'.to_ber, false.to_ber].to_ber_sequence
    control_codes = control_codes.to_ber_sequence
    res = [['1.2.3', true], ['1.7.9', false]].to_ber_control
    assert_equal control_codes, res
  end

  def test_wrap_array_if_not_nested
    result1 = ['1.2.3', true].to_ber_control
    result2 = [['1.2.3', true]].to_ber_control
    assert_equal result2, result1
  end

  def test_empty_string_if_empty_array
    assert_equal "", [].to_ber_control
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
net-ldap-0.16.3 test/ber/core_ext/test_array.rb
net-ldap-0.16.2 test/ber/core_ext/test_array.rb
net-ldap-0.16.1 test/ber/core_ext/test_array.rb
net-ldap-0.16.0 test/ber/core_ext/test_array.rb
net-ldap-0.15.0 test/ber/core_ext/test_array.rb
net-ldap-0.14.0 test/ber/core_ext/test_array.rb