Sha256: 04f9bf35523b9077858c353b4b92fdd0eeeb6140175fc9c6b802a4934d1d9fe9
Contents?: true
Size: 1.73 KB
Versions: 1
Compression:
Stored size: 1.73 KB
Contents
require "spec_helper" describe Machined::Helpers::RenderHelpers do describe "#render" do it "renders partials" do within_construct do |c| c.file "pages/index.html.erb", <<-CONTENT.unindent <%= render "partial1" %> <%= render "partial2" %> <%= render "partials/partial3" %> CONTENT c.file "views/partial1.md", "# Hello World" c.file "views/_partial2.haml", "%p Here's some Content..." c.file "views/partials/_partial3.html", "<p>And some more</p>\n" # puts machined.views.paths.inspect machined.pages["index.html"].to_s.should == <<-CONTENT.unindent <h1>Hello World</h1> <p>Here's some Content...</p> <p>And some more</p> CONTENT end end it "renders partials with locals" do within_construct do |c| c.file "pages/index.html.erb", %(<%= render "partial", :text => "Hello World" %>) c.file "views/partial.haml", "%h1= text" machined.pages["index.html"].to_s.should == "<h1>Hello World</h1>\n" end end it "renders partial collections" do within_construct do |c| c.file "pages/index.html.erb", %(<%= render "number", :collection => [1,2,3] %>) c.file "views/number.haml", "= number\n= number_counter" machined.pages["index.html"].to_s.should == "1\n1\n2\n2\n3\n3\n" end end it "raises a Sprockets::FileNotFound error if the partial is missing" do within_construct do |c| c.file "pages/index.html.erb", %(<%= render "partial" %>) expect { machined.pages["index.html"].to_s }.to raise_error(Sprockets::FileNotFound) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
machined-0.1.0 | spec/machined/helpers/render_helpers_spec.rb |