aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorTom Feist <shabble@metavore.org>2011-02-26 00:36:54 +0000
committerTom Feist <shabble@metavore.org>2011-02-26 00:36:54 +0000
commitdc13053a103da811280653a36bdd8f0604d8ff77 (patch)
tree6dff6460e538ae0fcb9af1d3b37692a2565c5ee6 /testing
parentdefined check to prevent a warning in flush_input_buffer() [thanks DE1] (diff)
downloadirssi-scripts-dc13053a103da811280653a36bdd8f0604d8ff77.tar.gz
irssi-scripts-dc13053a103da811280653a36bdd8f0604d8ff77.zip
added T:I:T as the base object for creating tests with.
Diffstat (limited to 'testing')
-rw-r--r--testing/lib/Test/Irssi/Test.pm10
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/lib/Test/Irssi/Test.pm b/testing/lib/Test/Irssi/Test.pm
new file mode 100644
index 0000000..f1e217d
--- /dev/null
+++ b/testing/lib/Test/Irssi/Test.pm
@@ -0,0 +1,10 @@
+use strictures 1;
+use MooseX::Declare;
+
+class Test::Irssi::Test {
+
+ has 'items'
+ => (
+
+ );
+}c