diff options
author | Marius Gedminas <marius@gedmin.as> | 2015-09-24 11:43:33 +0200 |
---|---|---|
committer | Marius Gedminas <marius@gedmin.as> | 2015-09-24 11:43:33 +0200 |
commit | a2bc6b4b265f13ab099c50c2ccf768c64ec7eacf (patch) | |
tree | 177611a87ca9d3f60c0ead62ebdabef7280c0d49 /test/units/inventory/test_host.py | |
parent | Python 3: shlex.split() wants unicode (diff) | |
download | ansible-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.py | 35 |
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')) + |