Sha256: 6822c9e4b5574f1308fac9cd42cbccf02751808acd72fd0b4c635c98f0b228be
Contents?: true
Size: 1.68 KB
Versions: 12
Compression:
Stored size: 1.68 KB
Contents
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) require File.join(File.dirname(__FILE__), 'approximate_color_matching') Spec::Runner.configure do |config| config.include(BeApproximatelyTheSameColorAsMatcher) end require 'compass-colors' describe "sass extensions" do it "should lighten red into pink" do pink = invoke(:lighten, color(255,0,0), number(25)) pink.should be_approximately_the_same_color_as(color(255,127,127)) end it "should lighten red into pink (percentage)" do pink = invoke(:lighten_percent, color(255,0,0), number(50)) pink.should be_approximately_the_same_color_as(color(255,127,127)) end it "should darken red into maroon" do maroon = invoke(:darken, color(255,0,0), number(25)) maroon.should be_approximately_the_same_color_as(color(127,0,0)) end it "should darken red into maroon (percentage)" do maroon = invoke(:darken_percent, color(255,0,0), number(50)) maroon.should be_approximately_the_same_color_as(color(127,0,0)) end it "should darken white into gray and back again" do darker = invoke(:darken, color(0xff, 0xff, 0xff), number(50)) lighter_again = invoke(:lighten, darker, number(100)) color(0xff, 0xff, 0xff).should be_approximately_the_same_color_as(lighter_again) end it "shouldn't saturate fully saturated colors" do saturated = invoke(:saturate, color(0, 127, 127), number(50)) saturated.should be_approximately_the_same_color_as(color(0, 127, 127)) end def invoke(name, *args) Sass::Script::Functions::EvaluationContext.new({}).send(name, *args) end def color(r,g,b) Sass::Script::Color.new([r,g,b]) end def number(num) Sass::Script::Number.new(num) end end
Version data entries
12 entries across 11 versions & 3 rubygems