Sha256: 817279ba5b4bc239524757ab5f80c04d430acb49097b0ac4f33a2cfef99dea71

Contents?: true

Size: 518 Bytes

Versions: 16

Compression:

Stored size: 518 Bytes

Contents

require "spec_helper"

describe "contrast-switch" do
  before(:all) do
    ParserSupport.parse_file("library/contrast-switch")
  end

  context "called with a light base color" do
    it "outputs the dark color" do
      rule = "color: #000;"

      expect(".contrast-switch-light-base").to have_ruleset(rule)
    end
  end

  context "called with a dark base color" do
    it "outputs the light color" do
      rule = "color: #eee;"

      expect(".contrast-switch-dark-base").to have_ruleset(rule)
    end
  end
end

Version data entries

16 entries across 16 versions & 2 rubygems

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