From a3bc8ae55eb80d4517c64eaeb4b08df3ddf867f6 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Mon, 9 Dec 2013 14:43:35 -0800 Subject: alarm systems, types, central stations, RT#25994 --- FS/t/alarm_station.t | 5 +++++ FS/t/alarm_system.t | 5 +++++ FS/t/alarm_type.t | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 FS/t/alarm_station.t create mode 100644 FS/t/alarm_system.t create mode 100644 FS/t/alarm_type.t (limited to 'FS/t') diff --git a/FS/t/alarm_station.t b/FS/t/alarm_station.t new file mode 100644 index 000000000..9fc36f827 --- /dev/null +++ b/FS/t/alarm_station.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::alarm_station; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/alarm_system.t b/FS/t/alarm_system.t new file mode 100644 index 000000000..f835c4a2b --- /dev/null +++ b/FS/t/alarm_system.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::alarm_system; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/alarm_type.t b/FS/t/alarm_type.t new file mode 100644 index 000000000..2bbdf6302 --- /dev/null +++ b/FS/t/alarm_type.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::alarm_type; +$loaded=1; +print "ok 1\n"; -- cgit v1.2.1