Sha256: 21e2900bca36868f0b569a3459ba907d1b4c29aecd209fcc9d331a04c9ea1366

Contents?: true

Size: 1.31 KB

Versions: 16

Compression:

Stored size: 1.31 KB

Contents

require "spec_helper"

describe "border-color" do
  before(:all) do
    ParserSupport.parse_file("library/border-color")
  end

  context "called with one color" do
    it "applies same color to all sides" do
      rule = "border-color: #f00"

      expect(".border-color-all").to have_rule(rule)
    end
  end

  context "called with two colors" do
    it "applies to alternating sides" do
      rule = "border-color: #0f0 #00f"

      expect(".border-color-alternate").to have_rule(rule)
    end
  end

  context "called with three colors" do
    it "applies second color to left and right" do
      rule = "border-color: #f00 #0f0 #00f"

      expect(".border-color-implied-left").to have_rule(rule)
    end
  end

  context "called with four colors" do
    it "applies different colors to all sides" do
      rule = "border-color: #00f #0f0 #f00 #ff0"

      expect(".border-color-explicit").to have_rule(rule)
    end
  end

  context "called with null values" do
    it "writes rules for other three" do
      ruleset = "border-top-color: #0f0; " +
                "border-right-color: #ff0; " +
                "border-left-color: #00f;"
      bad_rule = "border-bottom-color: null;"

      expect(".border-color-false-third").to have_ruleset(ruleset)
      expect(".border-color-false-third").to_not have_rule(bad_rule)
    end
  end
end

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
bourbon-7.3.0 spec/bourbon/library/border_color_spec.rb
bourbon-7.2.0 spec/bourbon/library/border_color_spec.rb
bourbon-7.1.0 spec/bourbon/library/border_color_spec.rb
bourbon-7.0.0 spec/bourbon/library/border_color_spec.rb
bourbon-6.0.0 spec/bourbon/library/border_color_spec.rb
bourbon-5.1.0 spec/bourbon/library/border_color_spec.rb
bourbon-5.0.1 spec/bourbon/library/border_color_spec.rb
bourbon-5.0.0 spec/bourbon/library/border_color_spec.rb
bourbon-5.0.0.beta.8 spec/bourbon/library/border_color_spec.rb
bourbon-5.0.0.beta.7 spec/bourbon/library/border_color_spec.rb
doggystyle-0.1.0 spec/doggystyle/library/border_color_spec.rb
bourbon-5.0.0.beta.6 spec/bourbon/library/border_color_spec.rb
bourbon-5.0.0.beta.5 spec/bourbon/library/border_color_spec.rb
bourbon-5.0.0.beta.4 spec/bourbon/library/border_color_spec.rb
bourbon-5.0.0.beta.3 spec/bourbon/library/border_color_spec.rb
bourbon-5.0.0.beta.2 spec/bourbon/library/border_color_spec.rb