summaryrefslogtreecommitdiff
path: root/t/driver/E.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/driver/E.pm')
-rw-r--r--t/driver/E.pm14
1 files changed, 14 insertions, 0 deletions
diff --git a/t/driver/E.pm b/t/driver/E.pm
new file mode 100644
index 0000000..ad7d060
--- /dev/null
+++ b/t/driver/E.pm
@@ -0,0 +1,14 @@
+package E;
+
+# This is a good class, but not a driver
+
+use strict;
+
+use vars qw{$VERSION};
+BEGIN {
+ $VERSION = '0.01';
+}
+
+sub dummy { 1 }
+
+1;