aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/t/MockQuery.pm
diff options
context:
space:
mode:
authorlouise <louise>2009-08-27 08:39:22 +0000
committerlouise <louise>2009-08-27 08:39:22 +0000
commite720d39ca516481382b57ed1b0fb50698c5ad42f (patch)
tree5cb4dacaf55277400b9180afd67801ca6aa88136 /perllib/t/MockQuery.pm
parent47be3af4139fb43150201f145d73d057589746e5 (diff)
Moving test subdir
Diffstat (limited to 'perllib/t/MockQuery.pm')
-rw-r--r--perllib/t/MockQuery.pm28
1 files changed, 0 insertions, 28 deletions
diff --git a/perllib/t/MockQuery.pm b/perllib/t/MockQuery.pm
deleted file mode 100644
index a6cd3ff78..000000000
--- a/perllib/t/MockQuery.pm
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/perl -w
-#
-# MockQuery.pm:
-# Mock query to support tests for the Page functions
-#
-# Copyright (c) 2009 UK Citizens Online Democracy. All rights reserved.
-# Email: louise@mysociety.org; WWW: http://www.mysociety.org/
-#
-# $Id: MockQuery.pm,v 1.1 2009-08-26 16:52:14 louise Exp $
-#
-
-
-package MockQuery;
-
-sub new{
- my $class = shift;
- my $self = {
- site => shift,
- };
- bless $self, $class;
- return $self;
-}
-
-sub header{
-
-}
-
-1;