Skip to content

Commit 9f17a9a

Browse files
author
y-p
committed
TST: add test for test in test_testing
1 parent 886c3c7 commit 9f17a9a

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

pandas/tests/test_tests.py

+27
Original file line numberDiff line numberDiff line change
@@ -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+
pass
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

Comments
 (0)