Sha256: a194fbc5868e2aef5dfd86fcd7634b4dbd29640b659c71068153b90b2a07af34
Contents?: true
Size: 624 Bytes
Versions: 5
Compression:
Stored size: 624 Bytes
Contents
require File.dirname(__FILE__) + "/spec_helper" describe "Compass integration" do before do setup_staticmatic end it "should configure compass" do Compass.configuration.project_path.should == TEST_SITE_PATH Compass.configuration.sass_dir.should == File.join(TEST_SITE_PATH, "src", "stylesheets") Compass.configuration.css_dir.should == File.join(TEST_SITE_PATH, "site", "stylesheets") Compass.configuration.images_dir.should == File.join(TEST_SITE_PATH, "site", "images") Compass.configuration.http_path.should == "/" Compass.configuration.http_images_path.should == "/images" end end
Version data entries
5 entries across 5 versions & 1 rubygems