#!/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 = < 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';