summaryrefslogtreecommitdiff
path: root/test/units/modules
diff options
context:
space:
mode:
authorTim Rupp <caphrim007@gmail.com>2017-11-01 10:37:23 -0700
committerGitHub <noreply@github.com>2017-11-01 10:37:23 -0700
commitc239749052ae1b243dc4bd01ffb6c06d483e6d52 (patch)
treef131294bfc6f074211821953eb2ed07fce8f4387 /test/units/modules
parent83674af284dd78aed98aae10949a1b93dc5153dd (diff)
downloadansible-c239749052ae1b243dc4bd01ffb6c06d483e6d52.tar.gz
Removes bigip_user from skip file (#32451)
Diffstat (limited to 'test/units/modules')
-rw-r--r--test/units/modules/network/f5/test_bigip_user.py20
1 files changed, 4 insertions, 16 deletions
diff --git a/test/units/modules/network/f5/test_bigip_user.py b/test/units/modules/network/f5/test_bigip_user.py
index bb5caadaa3..ffbde0afa8 100644
--- a/test/units/modules/network/f5/test_bigip_user.py
+++ b/test/units/modules/network/f5/test_bigip_user.py
@@ -1,21 +1,7 @@
# -*- coding: utf-8 -*-
#
-# Copyright 2017 F5 Networks Inc.
-#
-# This file is part of Ansible
-#
-# Ansible is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# Ansible is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+# Copyright (c) 2017 F5 Networks Inc.
+# GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
@@ -42,6 +28,7 @@ try:
from library.bigip_user import ArgumentSpec
from library.bigip_user import UnparitionedManager
from library.bigip_user import PartitionedManager
+ from ansible.module_utils.f5_utils import iControlUnexpectedHTTPError
except ImportError:
try:
from ansible.modules.network.f5.bigip_user import Parameters
@@ -49,6 +36,7 @@ except ImportError:
from ansible.modules.network.f5.bigip_user import ArgumentSpec
from ansible.modules.network.f5.bigip_user import UnparitionedManager
from ansible.modules.network.f5.bigip_user import PartitionedManager
+ from ansible.module_utils.f5_utils import iControlUnexpectedHTTPError
except ImportError:
raise SkipTest("F5 Ansible modules require the f5-sdk Python library")