mirror of
https://github.com/tomgi/git_stats.git
synced 2024-11-11 05:36:29 +01:00
9 lines
312 B
Ruby
9 lines
312 B
Ruby
require 'spec_helper'
|
|
|
|
describe GitStats::StatsView::View do
|
|
let(:view) { GitStats::StatsView::View.new(double('view_data'), 'out_path') }
|
|
|
|
it 'should find all haml except partials and layout in templates directory' do
|
|
view.all_templates.should =~ %w(files activity/index general authors lines)
|
|
end
|
|
end |