diff options
Diffstat (limited to 'perllib/t/MockQuery.pm')
-rw-r--r-- | perllib/t/MockQuery.pm | 28 |
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; |