summaryrefslogtreecommitdiffstats
path: root/test/units/inventory/test_host.py
diff options
context:
space:
mode:
authorMarius Gedminas <marius@gedmin.as>2015-09-24 11:43:33 +0200
committerMarius Gedminas <marius@gedmin.as>2015-09-24 11:43:33 +0200
commita2bc6b4b265f13ab099c50c2ccf768c64ec7eacf (patch)
tree177611a87ca9d3f60c0ead62ebdabef7280c0d49 /test/units/inventory/test_host.py
parentPython 3: shlex.split() wants unicode (diff)
downloadansible-a2bc6b4b265f13ab099c50c2ccf768c64ec7eacf.tar.xz
ansible-a2bc6b4b265f13ab099c50c2ccf768c64ec7eacf.zip
Bugfix: if you define __eq__, you should define __ne__ too
Diffstat (limited to 'test/units/inventory/test_host.py')
-rw-r--r--test/units/inventory/test_host.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/test/units/inventory/test_host.py b/test/units/inventory/test_host.py
new file mode 100644
index 0000000000..f9f500a63e
--- /dev/null
+++ b/test/units/inventory/test_host.py
@@ -0,0 +1,35 @@
+# Copyright 2015 Marius Gedminas <marius@gedmin.as>
+#
+# 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/>.
+
+import unittest
+
+from ansible.inventory.host import Host
+
+
+class TestHost(unittest.TestCase):
+
+ def setUp(self):
+ self.hostA = Host('a')
+ self.hostB = Host('b')
+
+ def test_equality(self):
+ self.assertEqual(self.hostA, self.hostA)
+ self.assertNotEqual(self.hostA, self.hostB)
+ self.assertEqual(self.hostA, Host('a'))
+ # __ne__ is a separate method
+ self.assertFalse(self.hostA != Host('a'))
+