debian-mirror-gitlab/spec/services/issues/base_service_spec.rb
2023-05-27 22:25:52 +05:30

9 lines
289 B
Ruby

# 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