diff options
author | David Cournapeau <cournape@gmail.com> | 2009-09-16 07:15:21 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-09-16 07:15:21 +0000 |
commit | 364f7b87708a0f31b4bf09a510e0f325615b6b3f (patch) | |
tree | 434495b4a728caf9e94ee9b5f6f055956094b31d /numpy/oldnumeric/tests/test_regression.py | |
parent | 064d50496ce946cb54e0901ac10967d9e0126b20 (diff) | |
download | numpy-364f7b87708a0f31b4bf09a510e0f325615b6b3f.tar.gz |
All non core regressions tests moved to their respective modules.
Diffstat (limited to 'numpy/oldnumeric/tests/test_regression.py')
-rw-r--r-- | numpy/oldnumeric/tests/test_regression.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/numpy/oldnumeric/tests/test_regression.py b/numpy/oldnumeric/tests/test_regression.py new file mode 100644 index 000000000..235ae4fe5 --- /dev/null +++ b/numpy/oldnumeric/tests/test_regression.py @@ -0,0 +1,10 @@ +from numpy.testing import * + +rlevel = 1 + +class TestRegression(TestCase): + def test_numeric_random(self, level=rlevel): + """Ticket #552""" + from numpy.oldnumeric.random_array import randint + randint(0,50,[2,3]) + |