diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-06-08 01:30:52 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-06-08 01:30:52 -0700 |
commit | e96a2a6fd3a8885b0fb035ecc55bdf50dbe5a4aa (patch) | |
tree | 1be65eac435d9445d71a2c63e33fefe94db96349 /FS/t | |
parent | 0f21021fea8f99d28b4507c3cffa55cbdd6f110d (diff) |
multi-currency, RT#21565
Diffstat (limited to 'FS/t')
-rw-r--r-- | FS/t/agent_currency.t | 5 | ||||
-rw-r--r-- | FS/t/currency_exchange.t | 5 | ||||
-rw-r--r-- | FS/t/part_pkg_currency.t | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/FS/t/agent_currency.t b/FS/t/agent_currency.t new file mode 100644 index 000000000..152e066b5 --- /dev/null +++ b/FS/t/agent_currency.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::agent_currency; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/currency_exchange.t b/FS/t/currency_exchange.t new file mode 100644 index 000000000..6f8ac1de0 --- /dev/null +++ b/FS/t/currency_exchange.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::currency_exchange; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_pkg_currency.t b/FS/t/part_pkg_currency.t new file mode 100644 index 000000000..b8654c7e3 --- /dev/null +++ b/FS/t/part_pkg_currency.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_pkg_currency; +$loaded=1; +print "ok 1\n"; |