晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
Server : Apache System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64 User : rainic ( 1014) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /usr/share/doc/perl-Test-Simple/t/Test2/legacy/ |
Upload File : |
use strict;
use warnings;
# HARNESS-NO-FORMATTER
use Test2::Tools::Tiny;
#########################
#
# This test us here to insure that Ok, Diag, and Note events render the way
# Test::More renders them, trailing whitespace and all.
#
#########################
use Test2::API qw/test2_stack context/;
# The tools in Test2::Tools::Tiny have some intentional differences from the
# Test::More versions, these behave more like Test::More which is important for
# back-compat.
sub tm_ok($;$) {
my ($bool, $name) = @_;
my $ctx = context;
my $ok = bless {
pass => $bool,
name => $name,
effective_pass => 1,
trace => $ctx->trace->snapshot,
}, 'Test2::Event::Ok';
# Do not call init
$ctx->hub->send($ok);
$ctx->release;
return $bool;
}
# Test::More actually does a bit more, but for this test we just want to see
# what happens when message is a specific string, or undef.
sub tm_diag {
my $ctx = context();
$ctx->diag(@_);
$ctx->release;
}
sub tm_note {
my $ctx = context();
$ctx->note(@_);
$ctx->release;
}
# Ensure the top hub is generated
test2_stack->top;
my $temp_hub = test2_stack->new_hub();
require Test::Builder::Formatter;
$temp_hub->format(Test::Builder::Formatter->new);
my $diag = capture {
tm_diag(undef);
tm_diag("");
tm_diag(" ");
tm_diag("A");
tm_diag("\n");
tm_diag("\nB");
tm_diag("C\n");
tm_diag("\nD\n");
tm_diag("E\n\n");
};
my $note = capture {
tm_note(undef);
tm_note("");
tm_note(" ");
tm_note("A");
tm_note("\n");
tm_note("\nB");
tm_note("C\n");
tm_note("\nD\n");
tm_note("E\n\n");
};
my $ok = capture {
tm_ok(1);
tm_ok(1, "");
tm_ok(1, " ");
tm_ok(1, "A");
tm_ok(1, "\n");
tm_ok(1, "\nB");
tm_ok(1, "C\n");
tm_ok(1, "\nD\n");
tm_ok(1, "E\n\n");
};
test2_stack->pop($temp_hub);
is($diag->{STDOUT}, "", "STDOUT is empty for diag");
is($diag->{STDERR}, <<EOT, "STDERR for diag looks right");
# undef
#_
# _
# A
#_
#_
# B
# C
#_
# D
# E
#_
EOT
is($note->{STDERR}, "", "STDERR for note is empty");
is($note->{STDOUT}, <<EOT, "STDOUT looks right for note");
# undef
#_
# _
# A
#_
#_
# B
# C
#_
# D
# E
#_
EOT
is($ok->{STDERR}, "", "STDERR for ok is empty");
is($ok->{STDOUT}, <<EOT, "STDOUT looks right for ok");
ok 1
ok 2 -_
ok 3 - _
ok 4 - A
ok 5 -_
#_
ok 6 -_
# B
ok 7 - C
#_
ok 8 -_
# D
#_
ok 9 - E
#_
#_
EOT
done_testing;