Sha256: bcc6484f78648e6a3782b6daa5f9730ba43a0f6780b7ec9b445c653a4591dc09
Contents?: true
Size: 1.21 KB
Versions: 2
Compression:
Stored size: 1.21 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') describe Stache::Handler do # ERBHandler = ActionView::Template::Handlers::ERB.new # def new_template(body = "<%= hello %>", details = {}) # ActionView::Template.new(body, "hello template", ERBHandler, {:virtual_path => "hello"}.merge!(details)) # end before do @template = ActionView::Template.new("{{body}}", "hello mustache", Stache::Handler, { :virtual_path => "hello_world"}) @handler = Stache::Handler.new(@template) end describe "#mustache_class_from_template" do it "returns the appropriate mustache class" do class HelloWorld < Stache::View; end @handler.mustache_class_from_template(@template).should == HelloWorld Object.send(:remove_const, :HelloWorld) end it "is clever about folders and such" do @template.stub!(:virtual_path).and_return("profiles/index") module Profiles; class Index < Stache::View; end; end @handler.mustache_class_from_template(@template).should == Profiles::Index Object.send(:remove_const, :Profiles) end it "retuns Stache::View if it can't find none" do @handler.mustache_class_from_template(@template).should == Stache::View end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
stache-0.0.2 | spec/stache/handler_spec.rb |
stache-0.0.1 | spec/stache/handler_spec.rb |