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