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

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

require 'spec_helper'

describe Ci::BuildTraceSection, model: true do
  it { is_expected.to belong_to(:build)}
  it { is_expected.to belong_to(:project)}
  it { is_expected.to belong_to(:section_name)}

  it { is_expected.to validate_presence_of(:section_name) }
  it { is_expected.to validate_presence_of(:build) }
  it { is_expected.to validate_presence_of(:project) }
end