Sha256: b5301ca09face4163f1d8a88c04aaa6c7a3862b0ee79fbc143ec40a5421f50af

Contents?: true

Size: 495 Bytes

Versions: 30

Compression:

Stored size: 495 Bytes

Contents

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

begin
  require 'simplecov'
  SimpleCov.start do
    minimum_coverage line: 100 unless ENV['NO_SIMPLECOV']
    add_filter '/test/'
    add_filter '/fast_arc4.rb'
  end
rescue LoadError
end

gem 'minitest'
require 'minitest/autorun'
require 'fiber'
require 'zlib'
require 'hexapdf/test_utils'

TEST_DATA_DIR = File.join(__dir__, 'data')
MINIMAL_PDF = File.binread(File.join(TEST_DATA_DIR, 'minimal.pdf')).freeze

Minitest::Test.make_my_diffs_pretty!

ENV['TZ'] = 'UTC'

Version data entries

30 entries across 30 versions & 1 rubygems

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