We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 886c3c7 commit 9f17a9aCopy full SHA for 9f17a9a
pandas/tests/test_tests.py
@@ -0,0 +1,27 @@
1
+#!/usr/bin/python
2
+# -*- coding: utf-8 -*-
3
+from __future__ import with_statement # support python 2.5
4
+import pandas as pd
5
+import unittest
6
+import warnings
7
+import nose
8
+
9
+from pandas.util.testing import assert_almost_equal
10
11
+# let's get meta.
12
13
+class TestUtilTesting(unittest.TestCase):
14
+ _multiprocess_can_split_ = True
15
16
+ def __init__(self, *args):
17
+ super(TestUtilTesting, self).__init__(*args)
18
19
+ def setUp(self):
20
+ pass
21
22
+ def tearDown(self):
23
24
25
+ def test_assert_almost_equal(self):
26
+ # don't die because values are not ndarrays
27
+ assert_almost_equal(1.1,1.1,check_less_precise=True)
0 commit comments