- or download this
$ hypnotoad myapp.pl
$ prove tracking.t
- or download this
# tracking.t
use strict; use warnings;
...
done_testing;
__END__
- or download this
# myapp.pl
use strict; use warnings;
...
Mojolicious::Commands->start_app('MyApp');
__END__
- or download this
# MyApp.pm
package MyApp {
...
};
1;
- or download this
# MyLib.pm
use strict; use warnings;
...
};
1;
- or download this
# OtherLib.pm
use strict; use warnings;
...
};
1;