Sha256: cb1db07791866b19daaee3cf372996dedbaac3bbbb3456c28315c5ea88c753b3
Contents?: true
Size: 1.22 KB
Versions: 10
Compression:
Stored size: 1.22 KB
Contents
# Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. require 'spec/helper' spec_require 'ramaze/template/haml' class TCTemplateHamlController < Ramaze::Controller map :/ view_root __DIR__(:haml) engine :Haml helper :link def index end def with_vars @title = "Teen Wolf" end end class TCRamazeLocals < Ramaze::Controller map '/locals' view_root __DIR__(:haml) def output render_template 'locals.haml', :abc => 'def' end private def sayhi 'hi' end end describe "Haml templates" do behaves_like 'http' ramaze(:compile => true) it "should render" do get('/').body.strip.should == %{<div id='contact'> <h1>Eugene Mumbai</h1> <ul class='info'> <li class='login'>eugene</li> <li class='email'>eugene@example.com</li> </ul> </div>} end it "should have access to variables defined in controller" do get('/with_vars').body.strip.should == %{<div id='content'> <div class='title'> <h1>Teen Wolf</h1> <a href="/Home">Home</a> </div> </div>} end it 'should support locals via render_template' do get('/locals/output').body.strip.should == "def\nhi" end end
Version data entries
10 entries across 10 versions & 4 rubygems