diff options
Diffstat (limited to 'FS/t')
-rw-r--r-- | FS/t/qual.t | 5 | ||||
-rw-r--r-- | FS/t/qual_option.t | 5 | ||||
-rw-r--r-- | FS/t/svc_dsl.t | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/FS/t/qual.t b/FS/t/qual.t new file mode 100644 index 000000000..5744483ed --- /dev/null +++ b/FS/t/qual.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::qual; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/qual_option.t b/FS/t/qual_option.t new file mode 100644 index 000000000..a5f76782e --- /dev/null +++ b/FS/t/qual_option.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::qual_option; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/svc_dsl.t b/FS/t/svc_dsl.t new file mode 100644 index 000000000..58cd0cf5f --- /dev/null +++ b/FS/t/svc_dsl.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::svc_dsl; +$loaded=1; +print "ok 1\n"; |