summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple/t/Legacy/ribasushi_threads2.t
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/Test-Simple/t/Legacy/ribasushi_threads2.t')
-rw-r--r--cpan/Test-Simple/t/Legacy/ribasushi_threads2.t21
1 files changed, 0 insertions, 21 deletions
diff --git a/cpan/Test-Simple/t/Legacy/ribasushi_threads2.t b/cpan/Test-Simple/t/Legacy/ribasushi_threads2.t
deleted file mode 100644
index 411a46315d..0000000000
--- a/cpan/Test-Simple/t/Legacy/ribasushi_threads2.t
+++ /dev/null
@@ -1,21 +0,0 @@
-use strict;
-use warnings;
-
-use Test::CanThread qw/AUTHOR_TESTING/;
-use Test::More;
-
-{
- my $todo = sub {
- my $out;
- ok(1);
- 42;
- };
-
- is(
- threads->create($todo)->join,
- 42,
- "Correct result after do-er",
- );
-}
-
-done_testing;