Sha256: 4c18abaa5a591ea81e3af0f7c714cee8685af71b76f9194137829b858c98bfe7

Contents?: true

Size: 1.1 KB

Versions: 14

Compression:

Stored size: 1.1 KB

Contents

# encoding: utf-8

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

14 entries across 14 versions & 1 rubygems

Version Path
nanoc-3.7.3 test/filters/test_yui_compressor.rb
nanoc-3.7.2 test/filters/test_yui_compressor.rb
nanoc-3.7.1 test/filters/test_yui_compressor.rb
nanoc-3.7.0 test/filters/test_yui_compressor.rb
nanoc-3.6.11 test/filters/test_yui_compressor.rb
nanoc-3.6.10 test/filters/test_yui_compressor.rb
nanoc-3.6.9 test/filters/test_yui_compressor.rb
nanoc-3.6.8 test/filters/test_yui_compressor.rb
nanoc-3.6.7 test/filters/test_yui_compressor.rb
nanoc-3.6.6 test/filters/test_yui_compressor.rb
nanoc-3.6.5 test/filters/test_yui_compressor.rb
nanoc-3.6.4 test/filters/test_yui_compressor.rb
nanoc-3.6.3 test/filters/test_yui_compressor.rb
nanoc-3.6.2 test/filters/test_yui_compressor.rb