Sha256: 19b0db4903232a4d7df531cb0ef00a8f1e85140a690446ef2f81d6e8be397085
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 KB
Contents
require 'spec_helper' describe Stasis::Render do before(:all) do generate end it "should render partials into index.html" do $files['index.html'].should =~ /render from root\nroot/ $files['index.html'].should =~ /render from subdirectory\nsubdirectory/ end it "should render partials into subdirectory/index.html" do $files['subdirectory/index.html'].should =~ /render from root\nroot/ $files['subdirectory/index.html'].should =~ /render from subdirectory\nsubdirectory/ end it "should render partials into no_controller/index.html" do $files['no_controller/index.html'].should =~ /render from root\nroot/ $files['no_controller/index.html'].should =~ /render from subdirectory\nsubdirectory/ end it "should render locals into before_render_locals.html" do $files['before_render_locals.html'].should =~ /true/ end it "should render locals into subdirectory/before_render_locals.html" do $files['subdirectory/before_render_locals.html'].should =~ /true/ end it "should render locals into render_locals.html" do $files['render_locals.html'].should =~ /true/ end it "should render locals into subdirectory/render_locals.html" do $files['subdirectory/render_locals.html'].should =~ /true/ end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stasis-0.2.0.pre | spec/stasis/plugins/render_spec.rb |