Sha256: 82d532ab25cbf5e3aff3cca5cf391294ed6a564962840b7d3324060f12b6b777
Contents?: true
Size: 1.1 KB
Versions: 6
Compression:
Stored size: 1.1 KB
Contents
require File.dirname(__FILE__) + "/spec_helper" describe "Helpers:" do include StaticMatic::Helpers before do setup_staticmatic @staticmatic.instance_variable_set("@current_page", "") end it "should include custom helper" do content = @staticmatic.generate_html_with_layout("index") content.should match(/Hello, Steve!/) end context "When using the stylesheet helper" do before do @links = stylesheets end it "should set up links for all stylesheets" do @links.should match(/stylesheets\/application\.css/) @links.should match(/stylesheets\/nested\/a_nested_stylesheet\.css/) @links.should match(/stylesheets\/sassy\.css/) end it "should not link to partials" do @links.should_not match(/\_forms.css/) end end context "When using the stylesheet helper from a sub page" do before do @staticmatic.instance_variable_set("@current_page", "/sub/index.html") @links = stylesheets end it "should link relative to current page" do @links.should match(/\.\.\/stylesheets/) end end end
Version data entries
6 entries across 6 versions & 1 rubygems