Sha256: ee9640790fa5873b34e78aa33296c5b5b2f2c3bd3d820276f61c2eaaec5124f4

Contents?: true

Size: 1002 Bytes

Versions: 3

Compression:

Stored size: 1002 Bytes

Contents

# frozen_string_literal: true

require 'simplecov'
SimpleCov.start

require File.expand_path("#{File.dirname(__FILE__)}/../config/boot")
require 'pry-byebug'

RSpec.configure do |config|
  config.order = 'random'
end

PATH_TO_GEM = File.expand_path("#{File.dirname(__FILE__)}/..")
TEST_INPUT_DIR       = File.join(PATH_TO_GEM, 'spec', 'test_data', 'input')
TEST_TIF_INPUT_FILE  = File.join(TEST_INPUT_DIR, 'test.tif')
TEST_JP2_INPUT_FILE = File.join(TEST_INPUT_DIR, 'test.jp2')

TEST_TIFF_NO_COLOR_FILE = File.join(TEST_INPUT_DIR, 'test_no_color_profile.tif')

TEST_RES1_TIF1 = File.join(TEST_INPUT_DIR, 'res1_image1.tif')
TEST_RES1_TEXT = File.join(TEST_INPUT_DIR, 'res1_textfile.txt')
TEST_RES1_PDF = File.join(TEST_INPUT_DIR, 'res1_transcript.pdf')

TEST_FILE_NO_EXIF = File.join(TEST_INPUT_DIR, 'file_with_no_exif.xml')

TEST_JSON_FILE = File.join(TEST_INPUT_DIR, 'test.json')

TEST_OBJ_FILE = File.join(TEST_INPUT_DIR, 'someobject.obj')
TEST_PLY_FILE = File.join(TEST_INPUT_DIR, 'someobject.ply')

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
assembly-objectfile-2.1.3 spec/spec_helper.rb
assembly-objectfile-2.1.2 spec/spec_helper.rb
assembly-objectfile-2.1.1 spec/spec_helper.rb