in reply to Re^3: Should Test::Most import strict and warnings?
in thread Should Test::Most import strict and warnings?
I'd say that reducing boilerplate code is one of the main advantages of Test::Most, so I think it will be logically if it will enable strict and warnings. The people who don't love surprises and magic can always replace it with:
use strict; use warnings; use Test::More; use Test::Exception; use Test::Differences; use Test::Deep; use Test::Warn;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Should Test::Most import strict and warnings?
by JavaFan (Canon) on Feb 05, 2010 at 22:44 UTC | |
by chromatic (Archbishop) on Feb 06, 2010 at 18:04 UTC |