Sha256: a669861fd418c8ff9acdae68915b4cf8f12a4c79ef26eba6793200704eeb3fcf
Contents?: true
Size: 358 Bytes
Versions: 4
Compression:
Stored size: 358 Bytes
Contents
# -*- encoding : utf-8 -*- require 'spec_helper' describe GitStats::Generator do let(:repo_path) { 'repo_path' } let(:out_path) { 'out_path' } let(:generator) { GitStats::Generator.new(path: repo_path, out_path: out_path) } it 'should raise exception if given repo path is not a git repository' do expect { generator }.to raise_error end end
Version data entries
4 entries across 4 versions & 1 rubygems