Sha256: 3c542ecdf4c9be005bfd314465ee5ba5dbe55ece3a6159ed4446b19d1cbd793f
Contents?: true
Size: 1.05 KB
Versions: 2
Compression:
Stored size: 1.05 KB
Contents
require File.expand_path("spec_helper", File.dirname(File.dirname(__FILE__))) begin require 'tilt/erb' rescue LoadError warn "tilt not installed, skipping render_each plugin test" else describe "render_each plugin" do it "calls render with each argument, returning joined string with all results" do app(:bare) do plugin :render_each def render_template(t, opts) "r#{t}#{opts[:locals][:foo] if opts[:locals]}#{opts[:bar]}#{opts[:locals][:bar] if opts[:locals]} " end route do |r| r.root do render_each([1,2,3], :foo) end r.is 'a' do render_each([1,2,3], :bar, :local=>:foo, :bar=>4) end r.is 'b' do render_each([1,2,3], :bar, :local=>nil) end r.is 'c' do render_each([1,2,3], :bar, :locals=>{:foo=>4}) end end end body.should == 'rfoo1 rfoo2 rfoo3 ' body("/a").should == 'rbar14 rbar24 rbar34 ' body("/b").should == 'rbar rbar rbar ' body("/c").should == 'rbar41 rbar42 rbar43 ' end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
roda-2.2.0 | spec/plugin/render_each_spec.rb |
roda-2.1.0 | spec/plugin/render_each_spec.rb |