e7ee84aad4
This implements the support for `needs:` keyword as part of GitLab CI. That makes some of the jobs to be run out of order.
13 lines
357 B
Ruby
13 lines
357 B
Ruby
# 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
|