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

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

describe Label do
  let(:label) { create(:label) }
  it { label.should be_valid }

  it { should belong_to(:project) }
end