Sha256: 088dc033f2d5b386d05b98e462ba5bf06cde0c6b59ce1dffe816a505adceb8f7

Contents?: true

Size: 542 Bytes

Versions: 91

Compression:

Stored size: 542 Bytes

Contents

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

require 'test_helper'
require 'hexapdf/type'

describe HexaPDF::Type do
  it "all autoload files have no syntax error" do
    HexaPDF::Type.constants.each do |const|
      HexaPDF::Type.const_get(const) # no assert needed here
    end
    HexaPDF::Type::Actions.constants.each do |const|
      HexaPDF::Type::Actions.const_get(const) # no assert needed here
    end
    HexaPDF::Type::Annotations.constants.each do |const|
      HexaPDF::Type::Annotations.const_get(const) # no assert needed here
    end
  end
end

Version data entries

91 entries across 91 versions & 1 rubygems

Version Path
hexapdf-1.0.2 test/hexapdf/test_type.rb
hexapdf-1.0.1 test/hexapdf/test_type.rb
hexapdf-1.0.0 test/hexapdf/test_type.rb
hexapdf-0.47.0 test/hexapdf/test_type.rb
hexapdf-0.46.0 test/hexapdf/test_type.rb
hexapdf-0.45.0 test/hexapdf/test_type.rb
hexapdf-0.44.0 test/hexapdf/test_type.rb
hexapdf-0.41.0 test/hexapdf/test_type.rb
hexapdf-0.40.0 test/hexapdf/test_type.rb
hexapdf-0.39.1 test/hexapdf/test_type.rb
hexapdf-0.39.0 test/hexapdf/test_type.rb
hexapdf-0.38.0 test/hexapdf/test_type.rb
hexapdf-0.37.2 test/hexapdf/test_type.rb
hexapdf-0.37.1 test/hexapdf/test_type.rb
hexapdf-0.37.0 test/hexapdf/test_type.rb
hexapdf-0.36.0 test/hexapdf/test_type.rb
hexapdf-0.35.1 test/hexapdf/test_type.rb
hexapdf-0.35.0 test/hexapdf/test_type.rb
hexapdf-0.34.1 test/hexapdf/test_type.rb
hexapdf-0.34.0 test/hexapdf/test_type.rb