mirror of
https://github.com/tomgi/git_stats.git
synced 2024-11-10 21:27:05 +01:00
27 lines
1.1 KiB
Ruby
27 lines
1.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe GitStats::GitData::ShortStat do
|
|
let(:commit) { build(:commit, hash: 'abc') }
|
|
|
|
describe 'git output parsing' do
|
|
context 'parsing git show output' do
|
|
[
|
|
{content: '2 files changed, 17 insertions(+), 3 deletions(-)', expect: [2, 17, 3]},
|
|
{content: '1 file changed, 1 insertion(+), 1 deletion(-)', expect: [1, 1, 1]},
|
|
{content: '2 files changed, 3 deletions(-)', expect: [2, 0, 3]},
|
|
{content: '2 files changed, 5 insertions(+)', expect: [2, 5, 0]},
|
|
{content: '', expect: [0, 0, 0]},
|
|
].each do |test|
|
|
it "#{test[:content]} parsing" do
|
|
commit.repo.should_receive(:run).with("git show --shortstat --oneline abc").and_return("abc some commit\n#{test[:content]}")
|
|
|
|
|
|
commit.short_stat.should be_a(GitStats::GitData::ShortStat)
|
|
commit.short_stat.files_changed.should == test[:expect][0]
|
|
commit.short_stat.insertions.should == test[:expect][1]
|
|
commit.short_stat.deletions.should == test[:expect][2]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |