summaryrefslogtreecommitdiff
path: root/spec/models/ci/build_trace_section_spec.rb
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