summaryrefslogtreecommitdiff
path: root/spec/services/issues/base_service_spec.rb
blob: 94165d557d87fc3c2090ef412dd7e487a1e8270b (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Issues::BaseService, feature_category: :team_planning do
  describe '#constructor_container_arg' do
    it { expect(described_class.constructor_container_arg("some-value")).to eq({ container: "some-value" }) }
  end
end