Sha256: 2b3138547bec01c464c8cabbfdf26cf8894a67afb4970fc797ecbd244f6549a3

Contents?: true

Size: 1003 Bytes

Versions: 75

Compression:

Stored size: 1003 Bytes

Contents

# -*- encoding: utf-8 -*-

require 'test_helper'
require 'hexapdf/font/encoding/base'

describe HexaPDF::Font::Encoding::Base do
  before do
    @base = HexaPDF::Font::Encoding::Base.new
    @base.code_to_name[65] = :A
  end

  it "returns nil for the encoding_name" do
    assert_nil(@base.encoding_name)
  end

  describe "name" do
    it "returns a mapped code" do
      assert_equal(:A, @base.name(65))
    end

    it "returns .notdef for an unmapped code" do
      assert_equal(:'.notdef', @base.name(66))
    end
  end

  describe "unicode" do
    it "returns the unicode value of the code" do
      assert_equal("A", @base.unicode(65))
    end

    it "returns an empty string for an unmapped code" do
      assert_nil(@base.unicode(66))
    end
  end

  describe "code" do
    it "returns the code for an existing glyph name" do
      assert_equal(65, @base.code(:A))
    end

    it "returns nil if the glyph name is not referenced" do
      assert_nil(@base.code(:Unknown))
    end
  end
end

Version data entries

75 entries across 75 versions & 1 rubygems

Version Path
hexapdf-0.22.0 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.21.1 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.21.0 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.20.4 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.20.3 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.20.2 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.20.1 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.20.0 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.19.3 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.19.2 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.19.1 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.19.0 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.18.0 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.17.3 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.17.2 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.16.0 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.15.9 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.15.8 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.15.7 test/hexapdf/font/encoding/test_base.rb
hexapdf-0.15.6 test/hexapdf/font/encoding/test_base.rb