Collections: Add missing validations for boolean columns (#37005)
This commit is contained in:
parent
09697045a9
commit
0725afe1a9
@ -27,6 +27,9 @@ class Collection < ApplicationRecord
|
||||
|
||||
validates :name, presence: true
|
||||
validates :description, presence: true
|
||||
validates :local, inclusion: [true, false]
|
||||
validates :sensitive, inclusion: [true, false]
|
||||
validates :discoverable, inclusion: [true, false]
|
||||
validates :uri, presence: true, if: :remote?
|
||||
validates :original_number_of_items,
|
||||
presence: true,
|
||||
|
||||
@ -10,6 +10,12 @@ RSpec.describe Collection do
|
||||
|
||||
it { is_expected.to validate_presence_of(:description) }
|
||||
|
||||
it { is_expected.to_not allow_value(nil).for(:local) }
|
||||
|
||||
it { is_expected.to_not allow_value(nil).for(:sensitive) }
|
||||
|
||||
it { is_expected.to_not allow_value(nil).for(:discoverable) }
|
||||
|
||||
context 'when collection is remote' do
|
||||
subject { Fabricate.build :collection, local: false }
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user