Add more coverage for model validations and associations
This commit is contained in:
parent
2bdea8651f
commit
97423a0bed
12 changed files with 96 additions and 50 deletions
|
@ -2,12 +2,15 @@ require 'spec_helper'
|
|||
|
||||
describe Key do
|
||||
describe "Associations" do
|
||||
it { should belong_to(:user) or belong_to(:project) }
|
||||
it { should belong_to(:user) }
|
||||
it { should belong_to(:project) }
|
||||
end
|
||||
|
||||
describe "Validation" do
|
||||
it { should validate_presence_of(:title) }
|
||||
it { should validate_presence_of(:key) }
|
||||
it { should ensure_length_of(:title).is_within(0..255) }
|
||||
it { should ensure_length_of(:key).is_within(0..5000) }
|
||||
end
|
||||
|
||||
describe "Methods" do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue