add another test, almost working support for selenium RC forking and running multiple...
[scpubgit/Test-Harness-Selenium.git] / t / basic.t
CommitLineData
3749d2e5 1#!/usr/bin/perl
2use strict;
3use warnings;
4
5use lib 'lib';
6use Test::Harness::Selenium;
a5dd2803 7use Test::More;
3749d2e5 8
9my $s = Test::Harness::Selenium->new({
10 host => 'localhost',
a5dd2803 11 port => $< + 60_000,
3749d2e5 12 browser_url => 'http://www.google.com',
13 browser => shift,
14});
a5dd2803 15$s->test_directory(shift);
16done_testing;