Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Fake library

Have a private implementation of the used library and make sure this one gets loaded instead of the real class. (e.g. by tweaking @INC and loading the module early.

package WWW::Mechanize;
use strict;
use warnings;

our $VERSION = 'fake';

sub new {
    return bless {}, shift;
}

sub get {
    ...
}

1;