Sha256: cc8dc118db3826a44530c795b0296a501519fd4b35c15c76fada1fc0b0c4a403

Contents?: true

Size: 1.06 KB

Versions: 40

Compression:

Stored size: 1.06 KB

Contents

class Nanoc::Filters::YUICompressorTest < Nanoc::TestCase
  def test_filter_javascript
    if_have 'yuicompressor' do
      filter = ::Nanoc::Filters::YUICompressor.new

      sample_js = <<-JAVASCRIPT
        function factorial(n) {
            var result = 1;
            for (var i = 2; i <= n; i++) {
                result *= i
            }
            return result;
        }
      JAVASCRIPT

      result = filter.setup_and_run(sample_js, { type: 'js', munge: true })
      assert_match 'function factorial(c){var a=1;for(var b=2;b<=c;b++){a*=b}return a};', result

      result = filter.setup_and_run(sample_js, { type: 'js', munge: false })
      assert_match 'function factorial(n){var result=1;for(var i=2;i<=n;i++){result*=i}return result};', result
    end
  end

  def test_filter_css
    if_have 'yuicompressor' do
      filter = ::Nanoc::Filters::YUICompressor.new

      sample_css = <<-CSS
        * {
          margin: 0;
        }
      CSS

      result = filter.setup_and_run(sample_css, { type: 'css' })
      assert_match '*{margin:0}', result
    end
  end
end

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
nanoc-4.4.5 test/filters/test_yui_compressor.rb
nanoc-4.4.4 test/filters/test_yui_compressor.rb
nanoc-4.4.3 test/filters/test_yui_compressor.rb
nanoc-4.4.2 test/filters/test_yui_compressor.rb
nanoc-4.4.1 test/filters/test_yui_compressor.rb
nanoc-4.4.0 test/filters/test_yui_compressor.rb
nanoc-4.3.8 test/filters/test_yui_compressor.rb
nanoc-4.3.7 test/filters/test_yui_compressor.rb
nanoc-4.3.6 test/filters/test_yui_compressor.rb
nanoc-4.3.5 test/filters/test_yui_compressor.rb
nanoc-4.3.4 test/filters/test_yui_compressor.rb
nanoc-4.3.3 test/filters/test_yui_compressor.rb
nanoc-4.3.2 test/filters/test_yui_compressor.rb
nanoc-4.3.1 test/filters/test_yui_compressor.rb
nanoc-4.3.0 test/filters/test_yui_compressor.rb
nanoc-4.2.4 test/filters/test_yui_compressor.rb
nanoc-4.2.3 test/filters/test_yui_compressor.rb
nanoc-4.2.2 test/filters/test_yui_compressor.rb
nanoc-4.2.1 test/filters/test_yui_compressor.rb
nanoc-4.2.0 test/filters/test_yui_compressor.rb