diff options
author | levinse <levinse> | 2011-02-13 07:23:42 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-02-13 07:23:42 +0000 |
commit | 705719c34352808839deb2f7fb9c420fd1baf3c8 (patch) | |
tree | 7c1bc01f55bc9382bd9f7297e114d1e69efeeef5 /FS/t | |
parent | 67c6b2d956295e851335567da679230d818e73ab (diff) |
bulk DID orders and inventory, RT11291
Diffstat (limited to 'FS/t')
-rw-r--r-- | FS/t/did_order.t | 5 | ||||
-rw-r--r-- | FS/t/did_vendor.t | 5 | ||||
-rw-r--r-- | FS/t/lata.t | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/FS/t/did_order.t b/FS/t/did_order.t new file mode 100644 index 000000000..ae58719bd --- /dev/null +++ b/FS/t/did_order.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::did_order; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/did_vendor.t b/FS/t/did_vendor.t new file mode 100644 index 000000000..b8df3ee66 --- /dev/null +++ b/FS/t/did_vendor.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::did_vendor; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/lata.t b/FS/t/lata.t new file mode 100644 index 000000000..a70c3cbe4 --- /dev/null +++ b/FS/t/lata.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::lata; +$loaded=1; +print "ok 1\n"; |