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

group_badge_spec.rb « badges « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed7f83d0489ba2fdcd0496128675f4c32902e765 (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'spec_helper'

describe GroupBadge do
  describe 'associations' do
    it { is_expected.to belong_to(:group) }
  end

  describe 'validations' do
    it { is_expected.to validate_presence_of(:group) }
  end
end