Sha256: 6609659e6fb3812fcea9cff95b8f1fccf9e8042a964b3492c8de21072ed3086c
Contents?: true
Size: 1.53 KB
Versions: 3
Compression:
Stored size: 1.53 KB
Contents
# frozen_string_literal: true require "spec_helper" module Roadie describe StyleBlock do it "has a selector and a list of properties" do properties = [] selector = double "Selector" block = StyleBlock.new(selector, properties, [:all]) expect(block.selector).to eq(selector) expect(block.properties).to eq(properties) end it "delegates #specificity to the selector" do selector = double "Selector", specificity: 45 expect(StyleBlock.new(selector, [], [:all]).specificity).to eq(45) end it "delegates #selector_string to selector#to_s" do selector = double "Selector", to_s: "yey" expect(StyleBlock.new(selector, [], [:all]).selector_string).to eq("yey") end it "has a string representation" do properties = [double(to_s: "bar"), double(to_s: "baz")] expect(StyleBlock.new(double(to_s: "foo"), properties, [:all]).to_s).to eq("foo{bar;baz}") end describe "#inlinable" do context "when no media include feature condition" do it "delegates #inlinable? to the selector" do selector = double "Selector", inlinable?: "maybe" expect(StyleBlock.new(selector, [], [:all]).inlinable?).to eq("maybe") end end context "when one of media queries includes feature condition" do it "returns false" do selector = double "Selector", inlinable?: "maybe" expect(StyleBlock.new(selector, [], [:all, :'screen (min-width: 300px)']).inlinable?).to be(false) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
roadie-5.1.0 | spec/lib/roadie/style_block_spec.rb |
roadie-5.0.1 | spec/lib/roadie/style_block_spec.rb |
roadie-5.0.0 | spec/lib/roadie/style_block_spec.rb |