diff options
author | Shinya Maeda <shinya@gitlab.com> | 2018-12-03 20:10:13 +0900 |
---|---|---|
committer | Shinya Maeda <shinya@gitlab.com> | 2018-12-03 20:10:13 +0900 |
commit | dd4a8df4cb5da30bf918725143f3e038a6fa7a79 (patch) | |
tree | 31631d69b0cf87d105ec4ed6b56ab9ebe370c1b0 /spec/models/ci/runner_spec.rb | |
parent | a445aa0a9267f191fab1c46d438b42fbec549da5 (diff) | |
download | gitlab-ce-dd4a8df4cb5da30bf918725143f3e038a6fa7a79.tar.gz |
Validate enum uniqueness
Diffstat (limited to 'spec/models/ci/runner_spec.rb')
-rw-r--r-- | spec/models/ci/runner_spec.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/models/ci/runner_spec.rb b/spec/models/ci/runner_spec.rb index b545e036aa1..db348ec5a33 100644 --- a/spec/models/ci/runner_spec.rb +++ b/spec/models/ci/runner_spec.rb @@ -1,6 +1,8 @@ require 'spec_helper' describe Ci::Runner do + it_behaves_like 'Unique enum values' + describe 'validation' do it { is_expected.to validate_presence_of(:access_level) } it { is_expected.to validate_presence_of(:runner_type) } |