From aa499bb5f35e826ede598a1e9e17bf23f20411fd Mon Sep 17 00:00:00 2001 From: Sripriya <sseetha@brocade.com> Date: Fri, 26 Aug 2016 12:54:41 -0700 Subject: [PATCH] Remove list_vnf_resource_pagination unit test This patch removes the list_vnf_resource_pagination unit test which tested the pagination support of list_vnf_resources. Pagination support is not enabled for vnf resources and hence removed the test case. Change-Id: I98843a63f6566595ceeb4758926a441fff2ee0ff --- tackerclient/tests/unit/vm/test_cli10_vnf.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tackerclient/tests/unit/vm/test_cli10_vnf.py b/tackerclient/tests/unit/vm/test_cli10_vnf.py index 1b44bb87..26196257 100644 --- a/tackerclient/tests/unit/vm/test_cli10_vnf.py +++ b/tackerclient/tests/unit/vm/test_cli10_vnf.py @@ -207,9 +207,3 @@ class CLITestV10VmVNFJSON(test_cli10.CLITestV10Base): self.assertIn('id1', val) self.assertIn('NeutronPort', val) self.assertIn('CP11', val) - - def test_list_vnf_resources_pagination(self): - cmd = vnf.ListVNFResources(test_cli10.MyApp(sys.stdout), None) - self._test_list_sub_resources_with_pagination(self._VNF_RESOURCES, - 'resources', cmd, - self.test_id)