From cd4a0c70b058bdbff844f5b32de7cdcfb8d78c19 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Thu, 20 Aug 2015 21:57:47 -0400 Subject: [PATCH] isnotanumber is not needed as jinja2 has builtin number test --- lib/ansible/plugins/test/math.py | 36 -------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 lib/ansible/plugins/test/math.py diff --git a/lib/ansible/plugins/test/math.py b/lib/ansible/plugins/test/math.py deleted file mode 100644 index 3ac871c4357..00000000000 --- a/lib/ansible/plugins/test/math.py +++ /dev/null @@ -1,36 +0,0 @@ -# (c) 2014, Brian Coca -# -# 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 . - -from __future__ import absolute_import - -import math -from ansible import errors - -def isnotanumber(x): - try: - return math.isnan(x) - except TypeError: - return False - -class TestModule(object): - ''' Ansible math jinja2 tests ''' - - def tests(self): - return { - # general math - 'isnan': isnotanumber, - }