summaryrefslogtreecommitdiff
path: root/spec/helpers
diff options
context:
space:
mode:
authorSean McGivern <sean@gitlab.com>2016-06-30 16:17:10 +0100
committerSean McGivern <sean@gitlab.com>2016-07-08 10:57:21 +0100
commit78496e8c38ce0b415fa7aad5310b937a95265627 (patch)
tree6f6e31d2e1bd52918833bcf12e255a939d941f3a /spec/helpers
parentb6b26692ea44cfeab7e8fd64b7df60852850fce2 (diff)
downloadgitlab-ce-78496e8c38ce0b415fa7aad5310b937a95265627.tar.gz
Disable overflow messages
With the option to expand and collapse individual diffs, these aren't needed any more.
Diffstat (limited to 'spec/helpers')
-rw-r--r--spec/helpers/diff_helper_spec.rb17
1 files changed, 1 insertions, 16 deletions
diff --git a/spec/helpers/diff_helper_spec.rb b/spec/helpers/diff_helper_spec.rb
index e2db33d8345..65ca8760958 100644
--- a/spec/helpers/diff_helper_spec.rb
+++ b/spec/helpers/diff_helper_spec.rb
@@ -31,26 +31,11 @@ describe DiffHelper do
end
end
- describe 'diff_hard_limit_enabled?' do
- it 'should return true if param is provided' do
- allow(controller).to receive(:params) { { force_show_diff: true } }
- expect(diff_hard_limit_enabled?).to be_truthy
- end
-
- it 'should return false if param is not provided' do
- expect(diff_hard_limit_enabled?).to be_falsey
- end
- end
-
describe 'diff_options' do
- it 'should return hard limit for a diff if force diff is true' do
+ it 'should return hard limit for a diff' do
allow(controller).to receive(:params) { { force_show_diff: true } }
expect(diff_options).to include(Commit.max_diff_options)
end
-
- it 'should return safe limit for a diff if force diff is false' do
- expect(diff_options).not_to include(:max_lines, :max_files)
- end
end
describe 'unfold_bottom_class' do