diff options
Diffstat (limited to 't/MockQuery.pm')
-rw-r--r-- | t/MockQuery.pm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/t/MockQuery.pm b/t/MockQuery.pm new file mode 100644 index 000000000..0574c1ccc --- /dev/null +++ b/t/MockQuery.pm @@ -0,0 +1,28 @@ +#!/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-27 08:42:46 louise Exp $ +# + + +package MockQuery; + +sub new{ + my $class = shift; + my $self = { + site => shift, + }; + bless $self, $class; + return $self; +} + +sub header{ + +} + +1; |