aboutsummaryrefslogtreecommitdiffstats
path: root/t/Cobrands/Mysite/Util.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/Cobrands/Mysite/Util.pm')
-rw-r--r--t/Cobrands/Mysite/Util.pm28
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;