Sha256: 0732e34b635324b04cfcbda72ad8dacf2b928120fc50966220f0cd063be29bd1
Contents?: true
Size: 1.03 KB
Versions: 2
Compression:
Stored size: 1.03 KB
Contents
require File.dirname(__FILE__) + "/spec_helper" describe "StaticMatic::Render" do before do setup_staticmatic end it "generate content with a layout" do content = @staticmatic.generate_html_with_layout("index") content.should match(/StaticMatic/) content.should match(/This is some test content/) end it "generate html with layout assigned in template" do content = @staticmatic.generate_html_with_layout("layout_test") content.should match(/Alternate Layout/) end it "generate css" do content = @staticmatic.generate_css("application") end it "find source filename from path" do @staticmatic.source_template_from_path("@base_dir/src/stylesheets/application.css")[1].should == "application" end it "find layout from passed path" do @staticmatic.determine_layout("test/projects").should == "projects" end context "handling scss" do it "should generate css from scss" do @staticmatic.generate_css("sassy").should match(/color\: \#3bbfce\;/) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
staticmatic-0.11.0.alpha.4 | spec/render_spec.rb |
staticmatic-0.11.0.alpha.3 | spec/render_spec.rb |