|
Lines 242-257
subtest 'process_quote' => sub {
Link Here
|
| 242 |
|
242 |
|
| 243 |
$schema->storage->txn_begin; |
243 |
$schema->storage->txn_begin; |
| 244 |
|
244 |
|
|
|
245 |
# Create file transport for local testing |
| 246 |
my $file_transport = $builder->build( |
| 247 |
{ |
| 248 |
source => 'FileTransport', |
| 249 |
value => { |
| 250 |
name => 'Test Local Transport', |
| 251 |
transport => 'local', |
| 252 |
download_directory => $dirname, |
| 253 |
upload_directory => $dirname, |
| 254 |
} |
| 255 |
} |
| 256 |
); |
| 257 |
|
| 245 |
my $account = $builder->build( |
258 |
my $account = $builder->build( |
| 246 |
{ |
259 |
{ |
| 247 |
source => 'VendorEdiAccount', |
260 |
source => 'VendorEdiAccount', |
| 248 |
value => { |
261 |
value => { |
| 249 |
description => 'multi-message test vendor', |
262 |
description => 'multi-message test vendor', |
| 250 |
transport => 'FILE', |
263 |
file_transport_id => $file_transport->{file_transport_id}, |
| 251 |
plugin => '', |
264 |
plugin => '', |
| 252 |
san => $test_san, |
265 |
san => $test_san, |
| 253 |
orders_enabled => 1, |
266 |
orders_enabled => 1, |
| 254 |
auto_orders => 1, |
267 |
auto_orders => 1, |
| 255 |
} |
268 |
} |
| 256 |
} |
269 |
} |
| 257 |
); |
270 |
); |
| 258 |
- |
|
|