The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
|
use lib "$FindBin::Bin/lib" ; BEGIN { $ENV {SPVM_BUILD_DIR} = "$FindBin::Bin/.spvm_build" ; }
use SPVM 'TestCase::HTTP::Tiny' ; my $api = SPVM::api();
my $start_memory_blocks_count = $api ->get_memory_blocks_count();
ok(SPVM::TestCase::HTTP::Tiny->test);
ok(SPVM::TestCase::HTTP::Tiny->go);
SPVM::Fn->destroy_runtime_permanent_vars;
my $end_memory_blocks_count = $api ->get_memory_blocks_count();
is( $end_memory_blocks_count , $start_memory_blocks_count );
done_testing;
|