Sha256: 7222f513e4b30f83a499afb8657c85fe445e289c4cd38ae4b0220bc60f954c0f

Contents?: true

Size: 456 Bytes

Versions: 2

Compression:

Stored size: 456 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 './spec/spec_helper'

describe ::Differential::Calculator::Group do
  let(:id) { 'matt' }

  let(:group) { ::Differential::Calculator::Group.new(id) }

  it 'should initialize correctly' do
    expect(group.id).to eq(id)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
differential-1.0.4 spec/differential/calculator/group_spec.rb
differential-1.0.3 spec/differential/calculator/group_spec.rb