| Server IP : 45.40.142.9 / Your IP : 216.73.216.250 Web Server : Apache System : Linux s45-40-142-9.secureserver.net 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : bayspec ( 506) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /.cpanm/latest-build/HTTP-Tiny-0.070/t/ |
Upload File : |
#!perl
use strict;
use warnings;
use Test::More tests => 8;
use HTTP::Tiny;
# a couple tests to ensure that we get the default agent expected, the coorect
# agent when specified, and the correct agent when specifified with a space at
# the end of the string (as LWP::UserAgent does)
my $default = 'HTTP-Tiny/' . (HTTP::Tiny->VERSION || 0);
{
my $ua = HTTP::Tiny->new();
is $ua->agent, $default, 'default agent string is as expected';
}
{
my $ua = HTTP::Tiny->new(agent => 'something else');
is $ua->agent, 'something else', 'agent string is as expected';
}
{
my $ua = HTTP::Tiny->new(agent => 'something else ');
is
$ua->agent,
"something else $default",
'agent string is as properly appended to',
;
}
{
my $ua = HTTP::Tiny->new();
is( HTTP::Tiny->_agent(), $default, 'check _agent on class' );
is $ua->_agent(), $default, 'check _agent on object';
$ua->agent(undef);
is $ua->agent, undef, 'agent string is empty';
$ua->agent('something else');
is $ua->agent, 'something else', 'agent string is as expected';
$ua->agent('something else ');
is
$ua->agent,
"something else $default",
'agent string is as properly appended to',
;
}