Sha256: 0adf737aedf1da8af7c9d8bfb71430e3f849be2313deff6f834f2bfc56126ea6

Contents?: true

Size: 536 Bytes

Versions: 2

Compression:

Stored size: 536 Bytes

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 'date'
require 'yaml'

require 'simplecov'
require 'simplecov-console'

SimpleCov.formatter = SimpleCov::Formatter::Console
SimpleCov.start

require './lib/tree_branch'

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

def fixture(filename)
  YAML.load_file(fixture_path(filename))
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tree_branch-1.1.1 spec/spec_helper.rb
tree_branch-1.1.0 spec/spec_helper.rb