summaryrefslogtreecommitdiff
path: root/spec/models/snippet_spec.rb
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2012-08-29 11:36:02 -0400
committerRobert Speicher <rspeicher@gmail.com>2012-08-29 11:36:02 -0400
commit97423a0bed1148f65f9ed2bd8bf540e764d9576c (patch)
treed91a67a6a863a97b8cf2acd76b01c18de08c2dc5 /spec/models/snippet_spec.rb
parent2bdea8651fa3bd82418986ada84828c22d451405 (diff)
downloadgitlab-ce-97423a0bed1148f65f9ed2bd8bf540e764d9576c.tar.gz
Add more coverage for model validations and associations
Diffstat (limited to 'spec/models/snippet_spec.rb')
-rw-r--r--spec/models/snippet_spec.rb11
1 files changed, 9 insertions, 2 deletions
diff --git a/spec/models/snippet_spec.rb b/spec/models/snippet_spec.rb
index 2a63584e429..ffb861c4910 100644
--- a/spec/models/snippet_spec.rb
+++ b/spec/models/snippet_spec.rb
@@ -3,14 +3,21 @@ require 'spec_helper'
describe Snippet do
describe "Associations" do
it { should belong_to(:project) }
- it { should belong_to(:author) }
+ it { should belong_to(:author).class_name('User') }
+ it { should have_many(:notes).dependent(:destroy) }
end
describe "Validation" do
- it { should validate_presence_of(:title) }
it { should validate_presence_of(:author_id) }
it { should validate_presence_of(:project_id) }
+
+ it { should validate_presence_of(:title) }
+ it { should ensure_length_of(:title).is_within(0..255) }
+
it { should validate_presence_of(:file_name) }
+ it { should ensure_length_of(:title).is_within(0..255) }
+
it { should validate_presence_of(:content) }
+ it { should ensure_length_of(:content).is_within(0..10_000) }
end
end