Help for this page

Select Code to Download


  1. or download this
    package Bogus;
    use strict;
    use X11::GUITest qw(SendKeys); # and whatever other functions
    
  2. or download this
    package MyBogus;
    use Moose;
    ...
    extends 'Bogus';
    
    around ...;
    
  3. or download this
    package X11::GUITest::Moosified;
    use Moose;
    ...
    around ['SendKeys'] => sub {
        ...
    };