UNPKG

818 Btext/coffeescriptView Raw
1cc = require '../lib/coffeecup'
2
3describe 'IE conditionals', ->
4 describe " ie 'gte IE8', -> link href: 'ie.css', rel: 'stylesheet'", ->
5 it 'should render <!--[if gte IE8]><link href="ie.css" rel="stylesheet" /><![endif]-->', ->
6 h = -> ie 'gte IE8', -> link href: 'ie.css', rel: 'stylesheet'
7 cc.render(h).should.equal '<!--[if gte IE8]><link href="ie.css" rel="stylesheet" /><![endif]-->'
8
9describe 'IE conditionals optimized', ->
10 describe " ie 'gte IE8', -> link href: 'ie.css', rel: 'stylesheet'", ->
11 it 'should render <!--[if gte IE8]><link href="ie.css" rel="stylesheet" /><![endif]-->', ->
12 h = -> ie 'gte IE8', -> link href: 'ie.css', rel: 'stylesheet'
13 cc.render(h, optimized: true, cache: on).should.equal '<!--[if gte IE8]><link href="ie.css" rel="stylesheet" /><![endif]-->'