summaryrefslogtreecommitdiff
path: root/t/21-types/ScalarRef.t
diff options
context:
space:
mode:
authorToby Inkster <mail@tobyinkster.co.uk>2019-11-23 14:29:31 +0000
committerToby Inkster <mail@tobyinkster.co.uk>2019-11-23 14:29:31 +0000
commit4aa3817230be874012865257eb660699c1256483 (patch)
treef3636b1b2d50af652b43091e67c76c25d2d335eb /t/21-types/ScalarRef.t
parentc54bd496ff33896ec175a6c69058024b9bb2510e (diff)
add a marker to end of test cases to make it easier to automate inserting new test cases
Diffstat (limited to 't/21-types/ScalarRef.t')
-rw-r--r--t/21-types/ScalarRef.t1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/21-types/ScalarRef.t b/t/21-types/ScalarRef.t
index 407d65c7..4c31a17d 100644
--- a/t/21-types/ScalarRef.t
+++ b/t/21-types/ScalarRef.t
@@ -82,6 +82,7 @@ my @tests = (
pass => 'ref to hashref' => do { my $x = {}; \$x },
pass => 'ref to coderef' => do { my $x = sub { 1 }; \$x },
pass => 'ref to blessed hashref' => do { my $x = bless({}, 'SomePkg'); \$x },
+#TESTS
);
while (@tests) {