Skip to content

Commit

Permalink
Add package management testing class
Browse files Browse the repository at this point in the history
  • Loading branch information
ferki committed Jul 29, 2023
1 parent 2675153 commit 9b1a323
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions lib/Rex/Pkg/Test.pm
@@ -0,0 +1,25 @@
#
# (c) Ferenc Erki <erkiferenc@gmail.com>
#

package Rex::Pkg::Test;

use v5.12.5;
use warnings;

our $VERSION = '9999.99.99_99'; # VERSION

use Rex::Pkg::Base;
use base qw(Rex::Pkg::Base);

sub new {
my $that = shift;
my $proto = ref($that) || $that;
my $self = $proto->SUPER::new(@_);

bless $self, $proto;

return $self;
}

1;

0 comments on commit 9b1a323

Please sign in to comment.