use Test; BEGIN { plan tests => 9 } package Fart::Fiddle; sub new { my $class = shift || __PACKAGE__; print "Creating new ", __PACKAGE__, ": $class\n"; return bless {}, $class; } sub foof { my $o = shift; print Data::Dumper::Dumper("Fiddle->foof(", @_, ") called!"); main::ok(1); } package main; use Data::Dumper; use Inline Config => DIRECTORY => './blib_test'; use Inline::Python qw(py_eval); use Inline Python => <