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

package_file_build_info_spec.rb « packages « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18d6e720bf837f1fd80b6a80c45f3a828b2d3d18 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true
require 'spec_helper'

RSpec.describe Packages::PackageFileBuildInfo, type: :model do
  describe 'relationships' do
    it { is_expected.to belong_to(:package_file) }
    it { is_expected.to belong_to(:pipeline) }
  end
end