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
This commit is contained in:
Sripriya 2016-08-26 12:54:41 -07:00
parent c047bf9db2
commit aa499bb5f3

@ -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)