rename Hash->empty => is_empty
[gitmo/Moose.git] / t / 070_native_traits / 203_trait_hash.t
index 3af65b5..ef93bc4 100644 (file)
@@ -19,7 +19,7 @@ use Test::Moose 'does_ok';
         handles => {
             'set_option'       => 'set',
             'get_option'       => 'get',
-            'has_no_options'   => 'empty',
+            'has_no_options'   => 'is_empty',
             'num_options'      => 'count',
             'clear_options'    => 'clear',
             'delete_option'    => 'delete',
@@ -148,7 +148,7 @@ is_deeply(
     {
         'set_option'       => 'set',
         'get_option'       => 'get',
-        'has_no_options'   => 'empty',
+        'has_no_options'   => 'is_empty',
         'num_options'      => 'count',
         'clear_options'    => 'clear',
         'delete_option'    => 'delete',