One Hat Cyber Team
Your IP :
216.73.217.146
Server IP :
50.6.229.107
Server :
Linux server.hostburly.com 5.14.0-611.38.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 10 17:21:28 EDT 2026 x86_64
Server Software :
Apache
PHP Version :
8.2.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
.cpan
/
build
/
YAML-LibYAML-v0.902.0-0
/
t
/
View File Name :
empty.t
use FindBin '$Bin'; use lib $Bin; use TestYAMLTests tests => 5; is Dump(), '', 'Dumping no objects produces an empty yaml stream'; { my @objects = Load(''); is scalar(@objects), 0, 'Loading empty yaml stream produces no objects'; } { my @objects = Load("\n\n\n"); is scalar(@objects), 0, 'Loading yaml stream of empty lines produces no objects'; } { my @objects = Load(" \n \n \n"); is scalar(@objects), 0, 'Loading yaml stream of blank lines produces no objects'; } { my @objects = Load(<<'...'); # A comment line # Another comment after a blank line ... is scalar(@objects), 0, 'Loading blank lines an comments produce no objects'; }