summaryrefslogtreecommitdiff
path: root/spec/helpers/tracking_helper_spec.rb
blob: 71505e8ea69ab78c7da80aa875c32616b67fb974 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

describe TrackingHelper do
  describe '#tracking_attrs' do
    it 'returns an empty hash' do
      expect(helper.tracking_attrs('a', 'b', 'c')).to eq({})
    end
  end
end