0b0f39c573
Helps build a hash of snowplow tracking data attrs. Updates import project pane to use new helper.
11 lines
226 B
Ruby
11 lines
226 B
Ruby
# 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
|