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