|
@@ -64,11 +64,11 @@ class CustomerQueryToolTest(unittest.TestCase):
|
|
|
with self.assertRaisesRegex(RuntimeError, 'api client is required'):
|
|
with self.assertRaisesRegex(RuntimeError, 'api client is required'):
|
|
|
QueryCustomerListTool().call()
|
|
QueryCustomerListTool().call()
|
|
|
|
|
|
|
|
- def test_local_and_public_registries_are_identical_and_have_18_tools(self):
|
|
|
|
|
|
|
+ def test_local_and_public_registries_are_identical_and_have_25_tools(self):
|
|
|
local = GatewayApp().registered_tool_names()
|
|
local = GatewayApp().registered_tool_names()
|
|
|
public = PublicGatewayApp(None, None).registered_tool_names()
|
|
public = PublicGatewayApp(None, None).registered_tool_names()
|
|
|
self.assertEqual(local, public)
|
|
self.assertEqual(local, public)
|
|
|
- self.assertEqual(22, len(local))
|
|
|
|
|
|
|
+ self.assertEqual(25, len(local))
|
|
|
self.assertIn('query_customer_list', local)
|
|
self.assertIn('query_customer_list', local)
|
|
|
self.assertIn('list_customer_filter_options', local)
|
|
self.assertIn('list_customer_filter_options', local)
|
|
|
|
|
|