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/Cobrands/Mysite/Util.pm | |
parent | 47be3af4139fb43150201f145d73d057589746e5 (diff) |
Moving test subdir
Diffstat (limited to 't/Cobrands/Mysite/Util.pm')
-rw-r--r-- | t/Cobrands/Mysite/Util.pm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/t/Cobrands/Mysite/Util.pm b/t/Cobrands/Mysite/Util.pm new file mode 100644 index 000000000..b37d3cdf3 --- /dev/null +++ b/t/Cobrands/Mysite/Util.pm @@ -0,0 +1,28 @@ +#!/usr/bin/perl -w +# +# Util.pm: +# Test Cobranding for FixMyStreet. +# +# +# Copyright (c) 2009 UK Citizens Online Democracy. All rights reserved. +# Email: louise@mysociety.org. WWW: http://www.mysociety.org +# +# $Id: Util.pm,v 1.1 2009-08-27 08:42:46 louise Exp $ + +package Cobrands::Mysite::Util; +use Page; +use strict; +use Carp; +use mySociety::Web qw(ent); + +sub new{ + my $class = shift; + return bless {}, $class; +} + +sub page{ + my %params = (); + return ("A cobrand produced page", %params); +} + +1; |