summaryrefslogtreecommitdiff
path: root/spec/models/ci/build_need_spec.rb
blob: 450dd550a8f33859d1129ecff8705f2afbcd6169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

describe Ci::BuildNeed, model: true do
  let(:build_need) { build(:ci_build_need) }

  it { is_expected.to belong_to(:build) }

  it { is_expected.to validate_presence_of(:build) }
  it { is_expected.to validate_presence_of(:name) }
  it { is_expected.to validate_length_of(:name).is_at_most(128) }
end