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

12 lines
335 B
Ruby

require 'spec_helper'
describe Zero::Renderer, '#initialize' do
subject { described_class.new(template_path, type_map) }
let(:template_path) { 'foo/' }
let(:type_map) { {'html' => ['text/html'] } }
its(:path) { should be(template_path) }
its(:layout) { should match(/layout/) }
its(:types) { should be(type_map) }
end