* Fix failing tests by requiring a newer Moose in that test (Sartak)
+ * Don't warn in tests about Squirrel deprecations (Sartak)
+
0.23 Wed May 27 16:52:28 2009
* Take the mro::linearized_isa DEMOLISHALL fix from Moose
(originally by doy)
use Test::More;
use Scalar::Util 'blessed';
+# Don't spew deprecation warnings onto the user's screen
+BEGIN {
+ $SIG{__WARN__} = sub { warn $_[0] if $_[0] !~ /Squirrel is deprecated/ };
+}
+
do {
package Foo;
use Squirrel;