synapse desc validation
This commit is contained in:
parent
c7f7fa1d1b
commit
f85bf74b2e
1 changed files with 1 additions and 2 deletions
|
@ -8,8 +8,7 @@ RSpec.describe Synapse, type: :model do
|
||||||
it { is_expected.to have_many :mappings }
|
it { is_expected.to have_many :mappings }
|
||||||
it { is_expected.to validate_presence_of :permission }
|
it { is_expected.to validate_presence_of :permission }
|
||||||
it { is_expected.to validate_inclusion_of(:permission).in_array Perm::ISSIONS.map(&:to_s) }
|
it { is_expected.to validate_inclusion_of(:permission).in_array Perm::ISSIONS.map(&:to_s) }
|
||||||
|
it { is_expected.to validate_length_of(:desc).is_at_least(0) } # TODO don't allow nil
|
||||||
pending "validate that desc can't be nil - important for javascript"
|
|
||||||
|
|
||||||
context 'permissions' do
|
context 'permissions' do
|
||||||
let(:owner) { create :user }
|
let(:owner) { create :user }
|
||||||
|
|
Loading…
Reference in a new issue