diff options
Diffstat (limited to 'FS/t')
-rw-r--r-- | FS/t/cust_event.t | 5 | ||||
-rw-r--r-- | FS/t/part_event-Action.t | 5 | ||||
-rw-r--r-- | FS/t/part_event-Condition.t | 5 | ||||
-rw-r--r-- | FS/t/part_event.t | 5 | ||||
-rw-r--r-- | FS/t/part_event_condition.t | 5 | ||||
-rw-r--r-- | FS/t/part_event_condition_option.t | 5 | ||||
-rw-r--r-- | FS/t/part_event_condition_option_option.t | 5 | ||||
-rw-r--r-- | FS/t/part_event_option.t | 5 | ||||
-rw-r--r-- | FS/t/pkg_referral.t | 5 |
9 files changed, 45 insertions, 0 deletions
diff --git a/FS/t/cust_event.t b/FS/t/cust_event.t new file mode 100644 index 000000000..7812c5b6c --- /dev/null +++ b/FS/t/cust_event.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::cust_event; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_event-Action.t b/FS/t/part_event-Action.t new file mode 100644 index 000000000..a6652776c --- /dev/null +++ b/FS/t/part_event-Action.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_event::Action; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_event-Condition.t b/FS/t/part_event-Condition.t new file mode 100644 index 000000000..c44a438fd --- /dev/null +++ b/FS/t/part_event-Condition.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_event::Condition; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_event.t b/FS/t/part_event.t new file mode 100644 index 000000000..027b20cfc --- /dev/null +++ b/FS/t/part_event.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_event; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_event_condition.t b/FS/t/part_event_condition.t new file mode 100644 index 000000000..fa5a05cf3 --- /dev/null +++ b/FS/t/part_event_condition.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_event_condition; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_event_condition_option.t b/FS/t/part_event_condition_option.t new file mode 100644 index 000000000..492fc82ef --- /dev/null +++ b/FS/t/part_event_condition_option.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_event_condition_option; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_event_condition_option_option.t b/FS/t/part_event_condition_option_option.t new file mode 100644 index 000000000..f714011ad --- /dev/null +++ b/FS/t/part_event_condition_option_option.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_event_condition_option_option; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/part_event_option.t b/FS/t/part_event_option.t new file mode 100644 index 000000000..546a78fd8 --- /dev/null +++ b/FS/t/part_event_option.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::part_event_option; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/pkg_referral.t b/FS/t/pkg_referral.t new file mode 100644 index 000000000..ff047baa3 --- /dev/null +++ b/FS/t/pkg_referral.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::pkg_referral; +$loaded=1; +print "ok 1\n"; |