summaryrefslogtreecommitdiff
path: root/t/data/testing/t/test.t
diff options
context:
space:
mode:
authorJonathan "Duke" Leto <jonathan@leto.net>2011-05-22 21:46:45 -0700
committerJonathan "Duke" Leto <jonathan@leto.net>2011-05-22 21:46:45 -0700
commit3381139bcd476b549d6a8e58fb8c71cf33b225af (patch)
tree2bad0a5636a3384887dc31deea84115ea8922baf /t/data/testing/t/test.t
parentMess around with test data (diff)
downloadjitterbug-3381139bcd476b549d6a8e58fb8c71cf33b225af.tar.gz
Try adding a git repo for testing again
Git thinks we are trying to use submodules, so fake it out by renaming the .git directory to ._git_ . It will need to be renamed to .git during test runs.
Diffstat (limited to 't/data/testing/t/test.t')
-rw-r--r--t/data/testing/t/test.t16
1 files changed, 16 insertions, 0 deletions
diff --git a/t/data/testing/t/test.t b/t/data/testing/t/test.t
new file mode 100644
index 0000000..fa4485d
--- /dev/null
+++ b/t/data/testing/t/test.t
@@ -0,0 +1,16 @@
+use strict;
+use warnings;
+
+print "# Testing on Perl ($^X) $]\n";
+
+print "1..100\n";
+print "ok 1\n";
+print "i am not ok your not ok\n";
+print "NOT OK 42, HUT HUT\n";
+
+for (2 .. 100) {
+ print "ok $_ - stuff\n";
+}
+
+1/exp(1/0);
+exit "WTF";