---
# exact matches take precedence
exact:
  # whoops!  We have a ruby test here!
  -
    - /usr/bin/ruby
    - t/ruby.t
  # let's test some web pages
  -
    - /usr/bin/perl
    - -w
    - bin/test_html.pl
    - http://www.google.com/
  -
    - /usr/bin/perl
    - -w
    - bin/test_html.pl
    - http://www.yahoo.com/
  # override the regex
  -
    - /usr/bin/perl
    - t/customer.t
# regex matches are after exact matches
regex:
  -
    - /usr/bin/perl
    - -w
    - .*customer.*
# followed by the default
default:
  -
    - /usr/bin/perl
    - -wT
