Alien-SeleniumRC

 view release on metacpan or  search on metacpan

t/seleniumrc.t  view on Meta::CPAN

#!/usr/bin/perl
use strict;
use warnings;
use Test::More tests => 5;
use lib 'lib';


my $command;
BEGIN {
    # mock system() for testing
    package Alien::SeleniumRC;
    use subs 'system';

    package main;
    *Alien::SeleniumRC::system = sub { $command = shift; return 0; };



( run in 1.302 second using v1.01-cache-2.11-cpan-87723dcf8b7 )