Sha256: b751f6a9c5fd153031e37030fa25c150213b1dd087d201e29d0afaa6aefdb697

Contents?: true

Size: 1.06 KB

Versions: 1

Compression:

Stored size: 1.06 KB

Contents

# frozen_string_literal: true

#
# Copyright (c) 2018-present, Blue Marble Payroll, LLC
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#

require 'pry'
require 'csv'

require 'simplecov'
require 'simplecov-console'
SimpleCov.formatter = SimpleCov::Formatter::Console
SimpleCov.start

require './lib/hashematics'

def fixture_path(*filename)
  File.join('spec', 'fixtures', filename)
end

def csv_fixture(*filename)
  CSV.new(fixture(*filename), headers: true).map(&:to_h)
end

def yaml_fixture(*filename)
  # rubocop:disable Security/YAMLLoad
  YAML.load(fixture(*filename))
  # rubocop:enable Security/YAMLLoad
end

def fixture(*filename)
  # Excel adds a Byte Order Mark to the beginning of the file. Let Ruby
  # know about this so that the first 'id' column is correctly parsed.
  # More info about the Excel Byte Order Mark and Ruby is available at:
  # https://estl.tech/of-ruby-and-hidden-csv-characters-ef482c679b35 .
  file = File.open(fixture_path(*filename), 'r:bom|utf-8')

  file.read
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hashematics-1.0.0 spec/spec_helper.rb