gitlab-org--gitlab-foss/spec/helpers/tracking_helper_spec.rb
Luke Bennett 0b0f39c573 Add snowplow haml attr helper
Helps build a hash of snowplow tracking data attrs.
Updates import project pane to use new helper.
2019-06-05 16:28:41 +00:00

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