#!/usr/bin/perl -w use strict; use ROBOTest; ROBOTest::start("URL Test"); my $count = 0; while (my $line = <>) { if (($line =~ m//i) ) { $count++; } } # there should be 6 # ROBOTest::assert($count == 6); ROBOTest::finish;