Sha256: b0cb529dc50c71bb6176121a8216f51969e1a4d621f637a542a02bc5a6d69dc0

Contents?: true

Size: 973 Bytes

Versions: 5

Compression:

Stored size: 973 Bytes

Contents

# encoding: utf-8

class Nanoc::Extra::Validators::W3CTest < MiniTest::Unit::TestCase

  include Nanoc::TestHelpers

  def test_simple
    if_have 'w3c_validators' do
      with_site do |site|
        # Create some sample files
        %w{ foo bar baz }.each do |filename|
          %w{ xxx yyy }.each do |extension|
            File.open("output/#{filename}.#{extension}", 'w') { |io| io.write("hello") }
          end
        end

        # Create validator
        w3c = Nanoc::Extra::Validators::W3C.new('.', [ :html ])

        # Run
        w3c.run
      end
    end
  end

  def test_with_unknown_types
    if_have 'w3c_validators' do
      with_site do |site|
        # Create validator
        w3c = Nanoc::Extra::Validators::W3C.new('.', [ :foo ])

        # Test
        exception = assert_raises Nanoc::Errors::GenericTrivial do
          w3c.run
        end
        assert_equal 'unknown type(s) specified: foo', exception.message
      end
    end
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
nanoc-3.6.1 test/extra/validators/test_w3c.rb
nanoc-3.6.0 test/extra/validators/test_w3c.rb
nanoc-3.5.0 test/extra/validators/test_w3c.rb
nanoc-3.5.0b2 test/extra/validators/test_w3c.rb
nanoc-3.5.0b1 test/extra/validators/test_w3c.rb