aboutsummaryrefslogtreecommitdiffstats
path: root/t/open311/endpoint/Endpoint_Warwick.pm
diff options
context:
space:
mode:
authorMatthew Somerville <matthew-github@dracos.co.uk>2016-08-26 15:05:30 +0100
committerMatthew Somerville <matthew-github@dracos.co.uk>2016-08-26 15:05:30 +0100
commit0e45fa27e4bc857f61b71f6c121a61e08e54cb6a (patch)
tree7e83c50825819b60a9a73f16c4d4f0a4ff247650 /t/open311/endpoint/Endpoint_Warwick.pm
parentc1178ea85d1879d6533ac09e2a3c813441554b43 (diff)
parenta09c61c807d8d6b50227c9d8aa687f1eb22bad00 (diff)
Merge branch 'stevenage-open311'
Diffstat (limited to 't/open311/endpoint/Endpoint_Warwick.pm')
-rw-r--r--t/open311/endpoint/Endpoint_Warwick.pm31
1 files changed, 0 insertions, 31 deletions
diff --git a/t/open311/endpoint/Endpoint_Warwick.pm b/t/open311/endpoint/Endpoint_Warwick.pm
deleted file mode 100644
index c097f177e..000000000
--- a/t/open311/endpoint/Endpoint_Warwick.pm
+++ /dev/null
@@ -1,31 +0,0 @@
-package t::open311::endpoint::Endpoint_Warwick;
-use Web::Simple;
-
-our %BINDINGS;
-our $UPDATES_SQL;
-
-extends 'Open311::Endpoint::Integration::Warwick';
-
-sub insert_into_db {
- my ($self, $bindings) = @_;
-
- %BINDINGS = %$bindings;
- # return ($pem_id, $error_value, $error_product);
- return (1001);
-}
-
-sub get_updates_from_sql {
- my ($self, $sql) = @_;
- $UPDATES_SQL = $sql;
- return (
- {
- row_id => 999,
- service_request_id => 1001,
- updated_datetime => '2014-07-23 11:07:00',
- status => 'closed',
- description => 'Closed the ticket',
- }
- );
-}
-
-1;