File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
plugins/chain_plugin/test Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,13 @@ BOOST_AUTO_TEST_CASE(chain_plugin_default_tests) {
2323 // test default eos-vm-oc-whitelist
2424 BOOST_CHECK (plugin.chain ().is_eos_vm_oc_whitelisted (eosio::chain::name{" xsat" }));
2525 BOOST_CHECK (plugin.chain ().is_eos_vm_oc_whitelisted (eosio::chain::name{" vaulta" }));
26+ BOOST_CHECK (plugin.chain ().is_eos_vm_oc_whitelisted (eosio::chain::name{" core.vaulta" }));
27+ BOOST_CHECK (plugin.chain ().is_eos_vm_oc_whitelisted (eosio::chain::name{" xs.vaulta" }));
28+ BOOST_CHECK (plugin.chain ().is_eos_vm_oc_whitelisted (eosio::chain::name{" xsat.vaulta" }));
29+ BOOST_CHECK (plugin.chain ().is_eos_vm_oc_whitelisted (eosio::chain::name{" vaulta.xsat" }));
30+ BOOST_CHECK (!plugin.chain ().is_eos_vm_oc_whitelisted (eosio::chain::name{" vault" }));
31+ BOOST_CHECK (!plugin.chain ().is_eos_vm_oc_whitelisted (eosio::chain::name{" xs" }));
32+ BOOST_CHECK (!plugin.chain ().is_eos_vm_oc_whitelisted (eosio::chain::name{" " }));
2633}
2734
2835BOOST_AUTO_TEST_CASE (chain_plugin_eos_vm_oc_whitelist) {
You can’t perform that action at this time.
0 commit comments