diff options
author | Valeriy Sizov <vsv2711@gmail.com> | 2013-01-22 17:25:35 +0200 |
---|---|---|
committer | Valeriy Sizov <vsv2711@gmail.com> | 2013-01-22 17:25:35 +0200 |
commit | e982a9512e925f1534dfc893158f5654f97454f1 (patch) | |
tree | 303872f41216c547344318619700e733bcdb39ea | |
parent | 745c0dfa5768ffa5cb190d280127c8c5d1f6a5e4 (diff) | |
download | gitlab-ce-e982a9512e925f1534dfc893158f5654f97454f1.tar.gz |
fix tests
-rw-r--r-- | spec/models/issue_spec.rb | 4 | ||||
-rw-r--r-- | spec/models/snippet_spec.rb | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/spec/models/issue_spec.rb b/spec/models/issue_spec.rb index 0816b3eed5a..10db53e0745 100644 --- a/spec/models/issue_spec.rb +++ b/spec/models/issue_spec.rb @@ -28,10 +28,6 @@ describe Issue do it { should_not allow_mass_assignment_of(:project_id) } end - describe "Validation" do - it { should ensure_length_of(:description).is_within(0..10000) } - end - describe 'modules' do it { should include_module(Issuable) } end diff --git a/spec/models/snippet_spec.rb b/spec/models/snippet_spec.rb index b474d88c9e2..e4d1934829f 100644 --- a/spec/models/snippet_spec.rb +++ b/spec/models/snippet_spec.rb @@ -38,6 +38,5 @@ describe Snippet do 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 |