The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use Test::More tests => 4;

BEGIN {
    use_ok('Geometry::Primitive::Circle');
};

my $circ = Geometry::Primitive::Circle->new( radius => 5 );
isa_ok($circ, 'Geometry::Primitive::Circle');

cmp_ok($circ->radius, '==', 5, 'radius');
cmp_ok($circ->diameter, '==', 10, 'diameter');