gitlab-org--gitlab-foss/spec/models/label_spec.rb

9 lines
146 B
Ruby
Raw Normal View History

require 'spec_helper'
describe Label do
let(:label) { create(:label) }
it { label.should be_valid }
it { should belong_to(:project) }
end