aboutsummaryrefslogtreecommitdiff
path: root/spec/unit/renderer/template_path.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/renderer/template_path.rb')
-rw-r--r--spec/unit/renderer/template_path.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/unit/renderer/template_path.rb b/spec/unit/renderer/template_path.rb
new file mode 100644
index 0000000..261faa8
--- /dev/null
+++ b/spec/unit/renderer/template_path.rb
@@ -0,0 +1,8 @@
+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