Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issue_tracker_data_spec.rb « project_services « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3ddb7d9250f72f69c91eb8e954eedbbc27ed4cec (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe IssueTrackerData do
  let(:service) { create(:custom_issue_tracker_service, active: false, properties: {}) }

  describe 'Associations' do
    it { is_expected.to belong_to :service }
  end
end