diff options
author | Tom Feist <shabble@metavore.org> | 2011-02-26 00:36:54 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-02-26 00:36:54 +0000 |
commit | dc13053a103da811280653a36bdd8f0604d8ff77 (patch) | |
tree | 6dff6460e538ae0fcb9af1d3b37692a2565c5ee6 | |
parent | defined check to prevent a warning in flush_input_buffer() [thanks DE1] (diff) | |
download | irssi-scripts-dc13053a103da811280653a36bdd8f0604d8ff77.tar.gz irssi-scripts-dc13053a103da811280653a36bdd8f0604d8ff77.zip |
added T:I:T as the base object for creating tests with.
-rw-r--r-- | testing/lib/Test/Irssi/Test.pm | 10 |
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 |