Merge branch 'master' of git.shadowcat.co.uk:Test-Harness-Selenium
Chris Nehren [Fri, 14 Jan 2011 13:25:18 +0000 (08:25 -0500)]
t/vnc.t [new file with mode: 0644]

diff --git a/t/vnc.t b/t/vnc.t
new file mode 100644 (file)
index 0000000..c333286
--- /dev/null
+++ b/t/vnc.t
@@ -0,0 +1,17 @@
+#!/usr/bin/perl
+use strict;
+use warnings;
+
+use lib 'lib';
+use Test::Harness::Selenium;
+use Test::More;
+
+my $s = Test::Harness::Selenium->new({
+    host => 'localhost',
+    port => $< + 60_000,
+    browser_url => 'http://www.google.com',
+    browser => shift,
+    xvnc => ':0',
+});
+$s->test_directory(shift);
+done_testing;