Carp-Source
view release on metacpan or search on metacpan
t/01_context.t view on Meta::CPAN
#!/usr/bin/env perl
use warnings;
use strict;
use Carp::Source;
use Test::More tests => 1;
use Test::Differences;
my $context = Carp::Source::get_context(__FILE__, __LINE__);
# Some comments to
# avoid getting the expected
# context into the tested context
# which would make for recursive weirdness
my $expected = <<EOCONTEXT;
context for t/01_context.t line 7:
4: use Carp::Source;
5: use Test::More tests => 1;
6: use Test::Differences;
7: \e[30;43mmy \$context = Carp::Source::get_context(__FILE__, __LINE__);\e[0m
8:
9: # Some comments to
10: # avoid getting the expected
===========================================================================
EOCONTEXT
eq_or_diff $context, $expected, 'context';
( run in 0.519 second using v1.01-cache-2.11-cpan-df04353d9ac )