]> wagnertech.de Git - mfinanz.git/blobdiff - t/menu/parse_access_string.t
kivitendo 3.9.2-0.2
[mfinanz.git] / t / menu / parse_access_string.t
index 521269995c9e4cd38c3659779f3acd8facf67e3a..d68adcffad403afe828cd27b7340eb9cc05609c5 100644 (file)
@@ -54,9 +54,6 @@ ok($menu->parse_access_string(\%node), 'parenthesis 1');
 $node{access} = '(no_such_right & sales_order_edit | (no_such_right & sales_order_edit))';
 ok(!$menu->parse_access_string(\%node), 'parenthesis 2');
 
-$node{access} = 'sales_quotation_edit & client/feature_experimental_order';
-ok($menu->parse_access_string(\%node), 'client');
-
 $node{access} = '!no_such_right';
 ok($menu->parse_access_string(\%node), 'simple negation 1');
 
@@ -72,9 +69,6 @@ ok($menu->parse_access_string(\%node), 'parenthesis with negation 1');
 $node{access} = '(no_such_right & sales_order_edit | (!no_such_right | !sales_order_edit))';
 ok($menu->parse_access_string(\%node), 'parenthesis with negation 2');
 
-$node{access} = 'sales_quotation_edit & !client/feature_experimental_order';
-ok(!$menu->parse_access_string(\%node), 'client negation');
-
 done_testing;
 
 1;