Sha256: d3ba71c805f8ea05dc0d4389aee5a5eece71848c3dec9b1e5a61fb2ca0c76341

Contents?: true

Size: 1.41 KB

Versions: 4

Compression:

Stored size: 1.41 KB

Contents

require 'spec_helper'

describe "@include media()" do
  before(:all) do
    ParserSupport.parse_file("media")
  end

  context "with argument (481px)" do
    it "outputs @media screen and (min-width: 481px)" do
      expect('.media-default').to be_contained_in('screen and (min-width: 481px)')
    end
  end

  context "with argument (max-width 480px)" do
    it "outputs @media screen and (max-width: 480px)" do
      expect('.media-max-width').to be_contained_in('screen and (max-width: 480px)')
    end
  end

  context "with argument (min-width 320px max-width 480px)" do
    it "outputs @media screen and (min-width: 320px) and (max-width: 480px)" do
      expect('.media-min-max-width').to be_contained_in('screen and (min-width: 320px) and (max-width: 480px)')
    end
  end

  context "with argument (481px, 6)" do
    it "outputs @media screen and (min-width: 481px)" do
      expect('.change-media-context').to be_contained_in('screen and (min-width: 481px)')
    end

    it "uses a 6-column grid" do
      expect('.change-media-context').to have_rule('width: 100%')
    end
  end

  context "with shorthand argument (max-width 480px 6)" do
    it "outputs @media screen and (max-width: 480px)" do
      expect('.change-media-context-shorthand').to be_contained_in('screen and (max-width: 480px)')
    end

    it "uses a 6-column grid" do
      expect('.change-media-context-shorthand').to have_rule('width: 100%')
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
neat-1.5.0 spec/neat/media_spec.rb
neat-1.5.0.pre spec/neat/media_spec.rb
neat-1.4.0 spec/neat/media_spec.rb
neat-1.3.0 spec/neat/media_spec.rb