0
0
Fork 0
zero/spec/unit/zero/renderer/templates_spec.rb

14 lines
367 B
Ruby

require 'spec_helper'
describe Zero::Renderer, '#templates' do
let(:object) { described_class.new(template_path, types) }
subject { object.templates }
let(:template_path) { 'spec/fixtures/templates/' }
let(:types) { {'html' => ['text/html']} }
it 'loads the template tree' do
expect(subject).to be_kind_of(Zero::Renderer::TemplateFinder)
end
end