diff options
author | louise <louise> | 2009-08-27 08:39:22 +0000 |
---|---|---|
committer | louise <louise> | 2009-08-27 08:39:22 +0000 |
commit | e720d39ca516481382b57ed1b0fb50698c5ad42f (patch) | |
tree | 5cb4dacaf55277400b9180afd67801ca6aa88136 /t/MockQuery.pm | |
parent | 47be3af4139fb43150201f145d73d057589746e5 (diff) |
Moving test subdir
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; |