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

require 'spec_helper'

RSpec.describe ProtectedTag do
  describe 'Associations' do
    it { is_expected.to belong_to(:project) }
  end

  describe 'Validation' do
    it { is_expected.to validate_presence_of(:project) }
    it { is_expected.to validate_presence_of(:name) }
  end
end