From: Sven Schöling Date: Thu, 27 Oct 2011 16:22:28 +0000 (+0200) Subject: Test für reduziertes Interface von WH->transfer X-Git-Tag: release-2.7.0beta1~184 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=e502a43953cea946526bdb4bfcdc7f5ad4d2e3c8;p=kivitendo-erp.git Test für reduziertes Interface von WH->transfer --- diff --git a/t/wh/transfer.t b/t/wh/transfer.t index 331ed506e..94767529c 100644 --- a/t/wh/transfer.t +++ b/t/wh/transfer.t @@ -120,6 +120,23 @@ test { shift->{qty}, shift->{qty}, 'back and forth in one transaction' } { qty => 1, }; +############################################# + +test { shift->{qty}, shift->{qty}, 'warehouse reduced interface' } { + transfer_type => SL::DB::Manager::TransferType->find_by(description => 'transfer'), + parts => $part, + src_bin => $bin2, + dst_bin => $bin1, + qty => 1, +}, +{ + transfer_type => SL::DB::Manager::TransferType->find_by(description => 'transfer'), + parts => $part, + src_bin => $bin1, + dst_bin => $bin2, + qty => 1, +}; + done_testing;