in reply to Re^2: how do you build and test your modules locally before publishing
in thread how do you build and test your modules locally before publishing

perldoc allows you to provide a file path rather than a module name...

perldoc File::Spec perldoc lib/Foo/Bar.pm

I tend to view my pod in an 80x24 terminal to check there's no ugly line wrapping issues at that size.

I also check with Test::Pod and Test::Pod::Coverage.

perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'