summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/git/util_spec.rb
blob: bcca4d4c746f5d1fdad1e635ea6654afcb576898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'spec_helper'

describe Gitlab::Git::Util do
  describe '#count_lines' do
    [
      ["", 0],
      ["foo", 1],
      ["foo\n", 1],
      ["foo\n\n", 2],
    ].each do |string, line_count|
      it "counts #{line_count} lines in #{string.inspect}" do
        expect(Gitlab::Git::Util.count_lines(string)).to eq(line_count)
      end
    end
  end
end