File: Command.pm

package info (click to toggle)
libapp-cmd-perl 0.339-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 556 kB
  • sloc: perl: 1,919; makefile: 8; sh: 3
file content (13 lines) | stat: -rw-r--r-- 132 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
use strict;
use warnings;

package Test::IgnoreCommand::Command;

use Test::IgnoreCommand -ignore;

sub foo {
  return "hi";
}


1;