0
0
zero/spec/unit/renderer/template_path.rb
Gibheer 9e062519ba first commit for the new renderer
This part handles the building of the template tree, which then gets
used later by the containers.
2012-11-26 21:41:09 +01:00

9 lines
199 B
Ruby

require 'spec_helper'
describe Zero::Renderer, '#template_path' do
subject { Zero::Renderer.new(template_path) }
let(:template_path) { 'foo' }
its(:type_map) { should be(template_path) }
end