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

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::Delivery';

sub _defaultClass { 'Delivery-Test' }

sub _generateCommandLine {
    return shift->SUPER::_generateCommandLine() . " -r";
}

###
1;    #
###
