git_stats/spec/git_data/generator_spec.rb

13 lines
358 B
Ruby
Raw Normal View History

2012-10-23 20:37:42 +02:00
# -*- encoding : utf-8 -*-
2012-10-12 18:20:07 +02:00
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) }
2012-10-12 18:20:07 +02:00
it 'should raise exception if given repo path is not a git repository' do
expect { generator }.to raise_error
2012-10-12 18:20:07 +02:00
end
2012-10-23 20:37:42 +02:00
end