in reply to Test::More usage

I could be wrong, but you appear to be using Test::More in application code. Don't do that.

Test::More is a framework for writing test suites.

use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name

Replies are listed 'Best First'.
Re^2: Test::More usage
by Anonymous Monk on Sep 11, 2013 at 17:52 UTC
    thanks for your answer...if you could see that I am blushing for such a silly question.