Sha256: 34b24157be9e323214e2926b3598794752e2e3c7a9b5a2d426723a4de60f60d8

Contents?: true

Size: 452 Bytes

Versions: 3

Compression:

Stored size: 452 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::Item do
  let(:id) { 'matt' }

  let(:item) { ::Differential::Calculator::Item.new(id) }

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
differential-1.0.5 spec/differential/calculator/item_spec.rb
differential-1.0.4 spec/differential/calculator/item_spec.rb
differential-1.0.3 spec/differential/calculator/item_spec.rb