From db11c15281c8cf85c1d1ef7ffa645848cf55abdd Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Thu, 19 Mar 2015 16:04:44 -0700 Subject: [PATCH] add h_svc_circuit.pm, needed for h_labels to work, #34107, from #23879 --- FS/FS/h_svc_circuit.pm | 33 +++++++++++++++++++++++++++++++++ FS/MANIFEST | 2 ++ FS/t/h_svc_circuit.t | 5 +++++ 3 files changed, 40 insertions(+) create mode 100644 FS/FS/h_svc_circuit.pm create mode 100644 FS/t/h_svc_circuit.t diff --git a/FS/FS/h_svc_circuit.pm b/FS/FS/h_svc_circuit.pm new file mode 100644 index 000000000..2a84a7aa3 --- /dev/null +++ b/FS/FS/h_svc_circuit.pm @@ -0,0 +1,33 @@ +package FS::h_svc_circuit; + +use strict; +use vars qw( @ISA ); +use FS::h_Common; +use FS::svc_circuit; + +@ISA = qw( FS::h_Common FS::svc_circuit ); + +sub table { 'h_svc_circuit' }; + +=head1 NAME + +FS::h_svc_circuit - Historical telecom circuit service objects + +=head1 SYNOPSIS + +=head1 DESCRIPTION + +An FS::h_svc_circuit object represents a historical circuit service. +FS::h_svc_circuit inherits from FS::h_Common and FS::svc_circuit. + +=head1 BUGS + +=head1 SEE ALSO + +L, L, L, schema.html from the base +documentation. + +=cut + +1; + diff --git a/FS/MANIFEST b/FS/MANIFEST index 2ea404fe0..ca532ee0c 100644 --- a/FS/MANIFEST +++ b/FS/MANIFEST @@ -840,3 +840,5 @@ FS/legacy_cust_history.pm t/legacy_cust_history.t FS/quotation_pkg_tax.pm t/quotation_pkg_tax.t +FS/h_svc_circuit.pm +FS/h_svc_circuit.t diff --git a/FS/t/h_svc_circuit.t b/FS/t/h_svc_circuit.t new file mode 100644 index 000000000..89ec1e9de --- /dev/null +++ b/FS/t/h_svc_circuit.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::h_svc_circuit; +$loaded=1; +print "ok 1\n"; -- 2.11.0