projects
/
irspy-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d728ca
)
New -- used for running tests that are on the infrastructure of IRSpy
author
Mike Taylor
<mike@indexdata.com>
Fri, 13 Oct 2006 15:16:29 +0000
(15:16 +0000)
committer
Mike Taylor
<mike@indexdata.com>
Fri, 13 Oct 2006 15:16:29 +0000
(15:16 +0000)
itself rather than on the targets, since this test completes much more
quickly!
lib/ZOOM/IRSpy/Test/Quick.pm
[new file with mode: 0644]
patch
|
blob
diff --git a/lib/ZOOM/IRSpy/Test/Quick.pm
b/lib/ZOOM/IRSpy/Test/Quick.pm
new file mode 100644
(file)
index 0000000..
4c8e70c
--- /dev/null
+++ b/
lib/ZOOM/IRSpy/Test/Quick.pm
@@ -0,0
+1,21
@@
+# $Id: Quick.pm,v 1.1 2006-10-13 15:16:29 mike Exp $
+
+package ZOOM::IRSpy::Test::Quick;
+
+use 5.008;
+use strict;
+use warnings;
+
+use ZOOM::IRSpy::Test;
+our @ISA = qw(ZOOM::IRSpy::Test);
+
+sub subtests { qw(Ping Search::Title) }
+
+sub start {
+ my $class = shift();
+ my($conn) = @_;
+
+ $conn->log("irspy_test", "Quick test no-opping");
+}
+
+1;