Sha256: 3e722ed250aa83aa31c481bdcdc98e47db6ddc1aa0147ccf9a86b1e14b151cfd
Contents?: true
Size: 874 Bytes
Versions: 9
Compression:
Stored size: 874 Bytes
Contents
require "spec_helper" describe "Compass integration" do context "with the default staticmatic configuration" do before do setup_staticmatic end it "should configure compass" do pending "Compass config not quite right yet" Compass.configuration.project_path.should == TEST_SITE_PATH Compass.configuration.sass_dir.should == File.join("src", "stylesheets") Compass.configuration.css_dir.should == File.join("site", "stylesheets") Compass.configuration.images_dir.should == File.join("site", "images") Compass.configuration.http_images_path.should == "images" end end context "with a custom configuration" do before do setup_staticmatic end it "should allow site config to override defaults" do Compass.configuration.http_path.should == "http://a.test.host" end end end
Version data entries
9 entries across 9 versions & 1 rubygems