#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
#------------------------------------------------------------
package Distribution::Job::PackagerTest;

use strict;
use warnings;

use lib '/app/tools/common/lib';
use Common::Log;
use Common::Assert;
use Common::RSApp;

use lib '/app/tools/rps/lib';

use lib '/app/tools/job/lib';
use Job::Job;

use base 'Distribution::Job::Packager';

sub _defaultClass { 'Packager-Test' }

sub _generateCommandLine {
    my $self = shift;

    assert( $self->getCommandLineArg('writePath'), 'Write path  required for packager test' );

    return $self->SUPER::_generateCommandLine() . " -x";
}

###
1;    #
###
