Sha256: a6a01c9d4b8889104bc5f66625650c439b40e41c20efd3d872bd130537844264

Contents?: true

Size: 1.13 KB

Versions: 5

Compression:

Stored size: 1.13 KB

Contents

require 'rubygems'
require 'hpricot'
require 'riot'

$:.unshift File.dirname(__FILE__)
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')

require 'tinman'

module TinMan
  class IncludesHTMLMacro < Riot::AssertionMacro
    register :includes_html

    def evaluate(actual, expected)
      doc = Hpricot.parse(actual)
      expected = expected.to_a.flatten

      if (doc/expected.first).empty?
        fail("expected #{actual} to contain a <#{expected.first}>")
      elsif !(doc/expected.first).inner_html.match(expected.last)
        fail("expected <#{expected.first}> to contain #{expected.last}")
      else
        pass
      end
    end
  end

  class IncludesElementsMacro < Riot::AssertionMacro
    register :includes_elements

    def evaluate(actual, selector, count)
      doc = Hpricot.parse(actual)
      (doc/selector).size == count ? pass : fail("expected #{actual} to contain #{count} #{selector}(s)")
    end
  end

  class WithinMacro < Riot::AssertionMacro
    register :within

    def evaluate(actual, expected)
      expected.include?(actual) ? pass : fail("expected #{actual} to be within #{expected}")
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tinman-0.5.0 test/test_helper.rb
tinman-0.4.0 test/test_helper.rb
tinman-0.3.0 test/test_helper.rb
tinman-0.2.0 test/test_helper.rb
tinman-0.1.0 test/test_helper.rb