/opt/imh-python/lib/python3.9/site-packages/libcloud/test/loadbalancer
NameSizeModeActions
fixtures/-0755rm
__pycache__/-0755rm
test_alb.py169640644editdlrm
test_brightbox.py55830644editdlrm
test_cloudstack.py53480644editdlrm
test_dimensiondata_v2_3.py266790644editdlrm
test_dimensiondata_v2_4.py266790644editdlrm
test_elb.py100320644editdlrm
test_gce.py89250644editdlrm
test_gogrid.py81690644editdlrm
test_ninefold.py11360644editdlrm
test_nttcis.py441380644editdlrm
test_rackspace.py672020644editdlrm
test_slb.py256160644editdlrm
test_softlayer.py81740644editdlrm
__init__.py7810644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/libcloud/test/loadbalancer/test_ninefold.py (1136B)
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import sys import unittest from libcloud.loadbalancer.types import Provider from libcloud.loadbalancer.providers import get_driver class NinefoldLbTestCase(unittest.TestCase): def test_driver_instantiation(self): cls = get_driver(Provider.NINEFOLD) cls('username', 'key') if __name__ == '__main__': sys.exit(unittest.main())