Sha256: 46d6581c22028543aee049bd81b9f3d20baa546065bf1c4dc5d904a0bd2236a0
Contents?: true
Size: 1.85 KB
Versions: 4
Compression:
Stored size: 1.85 KB
Contents
require 'spec_helper' describe "@include omega()" do before(:all) do ParserSupport.parse_file("omega") end context "with no argument" do it "removes right margin" do expect('.omega-default').to have_rule('margin-right: 0') end end context "with argument (table)" do it "removes right padding" do expect('.omega-table').to have_rule('padding-right: 0') end end context "with argument (4n)" do it "removes right margin of nth-child(4n)" do expect('.omega-nth-default:nth-child(4n)').to have_rule('margin-right: 0') end it "adds clear to nth-child(4n+1)" do expect('.omega-nth-default:nth-child(4n+1)').to have_rule('clear: left') end end context "with argument (4n table)" do it "removes right padding of nth-child(4n)" do expect('.omega-nth-table:nth-child(4n)').to have_rule('padding-right: 0') end end context "with argument ('4n+1')" do it "removes right margin of nth-child(4n+1)" do expect('.omega-complex-nth:nth-child(4n+1)').to have_rule('margin-right: 0') end end context "when called inside an RTL row" do context "with no argument" do it "removes left margin" do expect('section .omega-default-left').to have_rule('margin-left: 0') end end context "with argument (table)" do it "removes left padding" do expect('section .omega-table-left').to have_rule('padding-left: 0') end end context "with argument (4n block)" do it "removes left margin of nth-child(4n)" do expect('section .omega-nth-default-left:nth-child(4n)').to have_rule('margin-left: 0') end end context "with argument (4n table)" do it "removes left padding of nth-child(4n)" do expect('section .omega-nth-table-left:nth-child(4n)').to have_rule('padding-left: 0') end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
neat-1.5.0 | spec/neat/omega_spec.rb |
neat-1.5.0.pre | spec/neat/omega_spec.rb |
neat-1.4.0 | spec/neat/omega_spec.rb |
neat-1.3.0 | spec/neat/omega_spec.rb |