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-0.11.2 test/hexapdf/test_type.rb
hexapdf-0.11.1 test/hexapdf/test_type.rb
hexapdf-0.11.0 test/hexapdf/test_type.rb
hexapdf-0.10.0 test/hexapdf/test_type.rb
hexapdf-0.9.3 test/hexapdf/test_type.rb
hexapdf-0.9.2 test/hexapdf/test_type.rb
hexapdf-0.9.1 test/hexapdf/test_type.rb
hexapdf-0.9.0 test/hexapdf/test_type.rb
hexapdf-0.8.0 test/hexapdf/test_type.rb
hexapdf-0.7.0 test/hexapdf/test_type.rb
hexapdf-0.6.0 test/hexapdf/test_type.rb