File: FailTestApp.pm

package info (click to toggle)
libmoox-cmd-perl 0.017-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 320 kB
  • sloc: perl: 1,110; makefile: 2; sh: 1
file content (12 lines) | stat: -rw-r--r-- 207 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
package FailTestApp;

use Moo;
use MooX::Cmd execute_from_new => undef;

around _build_command_execute_method_name => sub { "run" };

around _build_command_execute_from_new => sub { 0 };

sub run { @_ }

1;