Sha256: 711644e52123006ffb0a612bced7e99b6c9452d5cdce0f96b64e39c3115a6c9e

Contents?: true

Size: 1.3 KB

Versions: 19

Compression:

Stored size: 1.3 KB

Contents

require "spec_helper"

describe "border-width" do
  before(:all) do
    ParserSupport.parse_file("addons/border-width")
  end

  context "called with one color" do
    it "applies same width to all sides" do
      rule = "border-width: 1px"

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

  context "called with two widths" do
    it "applies to alternating sides" do
      rule = "border-width: 2px 3px"

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

  context "called with three widths" do
    it "applies second width to left and right" do
      rule = "border-width: 4px 5px 6px"

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

  context "called with four widths" do
    it "applies different widths to all sides" do
      rule = "border-width: 7px 8px 9px 10px"

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

  context "called with null values" do
    it "writes rules for other three" do
      ruleset = "border-top-width: 11px; " +
                "border-right-width: 12px; " +
                "border-left-width: 13px;"
      bad_rule = "border-bottom-width: null;"

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

Version data entries

19 entries across 19 versions & 3 rubygems

Version Path
bourbon-4.3.4 spec/bourbon/addons/border_width_spec.rb
bourbon-4.3.3 spec/bourbon/addons/border_width_spec.rb
bourbon-4.3.2 spec/bourbon/addons/border_width_spec.rb
bourbon-4.3.1 spec/bourbon/addons/border_width_spec.rb
bourbon-4.3.0 spec/bourbon/addons/border_width_spec.rb
bourbon-4.2.7 spec/bourbon/addons/border_width_spec.rb
bourbon-5.0.0.beta.1 spec/bourbon/addons/border_width_spec.rb
styler-sass-0.1.8.alpha spec/bourbon/addons/border_width_spec.rb
styler-sass-0.1.7 spec/bourbon/addons/border_width_spec.rb
styler-sass-0.1.7.alpha spec/bourbon/addons/border_width_spec.rb
styler-sass-0.1.5.alpha spec/bourbon/addons/border_width_spec.rb
bourbon-4.2.6 spec/bourbon/addons/border_width_spec.rb
bourbon-4.2.5 spec/bourbon/addons/border_width_spec.rb
bourbon-5.0.0.alpha.0 spec/bourbon/addons/border_width_spec.rb
bourbon-4.2.4 spec/bourbon/addons/border_width_spec.rb
solidus_backend-1.0.0.pre3 vendor/bundle/gems/bourbon-4.2.3/spec/bourbon/addons/border_width_spec.rb
solidus_backend-1.0.0.pre2 vendor/bundle/gems/bourbon-4.2.3/spec/bourbon/addons/border_width_spec.rb
bourbon-4.2.3 spec/bourbon/addons/border_width_spec.rb
bourbon-4.2.2 spec/bourbon/addons/border_width_spec.rb