⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 01base.t

📁 source of perl for linux application,
💻 T
字号:
use Test::More tests => 7;BEGIN { use_ok('Time::Piece'); }my $t = gmtime(315532800); # 00:00:00 1/1/1980isa_ok($t, 'Time::Piece', 'specific gmtime');cmp_ok($t->year, '==', 1980, 'correct year');cmp_ok($t->hour, '==',    0, 'correct hour');cmp_ok($t->mon,  '==',    1, 'correct mon');my $g = gmtime;isa_ok($g, 'Time::Piece', 'current gmtime');my $l = localtime;isa_ok($l, 'Time::Piece', 'current localtime');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -