Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-03-16 12:16:49 +0300
committerRémy Coutable <remy@rymai.me>2016-03-16 12:16:49 +0300
commitcacd3373ff7d5f3c8cc5774527e2474f9a28fc92 (patch)
tree58e4426905d64660d8c04020514a86bdb4306264 /spec/lib/gitlab/diff/parser_spec.rb
parent1e8bf60f40426de9cc6671a42019237688a848ac (diff)
parent374037b8a326b82a7787b2e29da820aa9c4390b3 (diff)
Merge remote-tracking branch 'origin/master' into 8-6-stable
Diffstat (limited to 'spec/lib/gitlab/diff/parser_spec.rb')
-rw-r--r--spec/lib/gitlab/diff/parser_spec.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/lib/gitlab/diff/parser_spec.rb b/spec/lib/gitlab/diff/parser_spec.rb
index f576c39284e..cdff063a9ed 100644
--- a/spec/lib/gitlab/diff/parser_spec.rb
+++ b/spec/lib/gitlab/diff/parser_spec.rb
@@ -90,4 +90,9 @@ eos
end
end
end
+
+ context 'when lines is empty' do
+ it { expect(parser.parse([])).to eq([]) }
+ it { expect(parser.parse(nil)).to eq([]) }
+ end
end