Tagged Questions
The doctest module searches for pieces of text that look like interactive Python sessions, and then executes those sessions to verify that they work exactly as shown. The test cases and expected output can be copied from an interactive Python interpreter session. During regression testing doctest alerts about failed cases.
53
votes
8answers
5k views
Python - doctest vs. unittest
I'm trying to get started with unit testing in Python and I was wondering if someone could inform me of the advantages and disadvantages of doctest and unittest. What conditions would you use each ...
9
votes
1answer
498 views
Can you check that an exception is thrown with doctest in Python?
Is it possible to write a doctest unit test that will check that an exception is raised? For example, if I have a function foo(x) that is supposed to raise an exception if x<0, how would I write ...
8
votes
6answers
770 views
Django doctests in views.py
The Django documentation on tests states:
For a given Django application, the test runner looks for doctests in two places:
The models.py file. You can define module-level doctests and/or ...
8
votes
3answers
702 views
Configure Django to find all doctests in all modules?
If I run the following command:
>python manage.py test
Django looks at tests.py in my application, and runs any doctests or unit tests in that file. It also looks at the __ test __ dictionary ...
6
votes
2answers
201 views
python doctest default namespace
In the doctests of my module I would like to reference my module with the full namespace, for example:
hp.myfunc(1)
And I would like to avoid cluttering the doctests by writing:
import healpy ...
6
votes
2answers
96 views
How do you test a function using which retrieves data by urllib2?
I am getting into testing in python and I asked myself how to test this method.
def get_response(self, url, params):
encoded_params = urllib.urlencode(params)
request = ...
6
votes
6answers
298 views
Unit testing infrastructure for a python module
I'm writing a python module and I would like to unit test it. I am new to python and somewhat bamboozled by the options available.
Currently, I would like to write my tests as doctests as I like the ...
5
votes
5answers
424 views
Does Python doctest remove the need for unit-tests?
A fellow developer on a project I am on believes that doctests are as good as unit-tests, and that if a piece of code is doctested, it does not need to be unit-tested. I do not believe this to be the ...
5
votes
2answers
238 views
Running doctests from Pydev?
Is there any straightforward way or should I use an external tool like Nose?
5
votes
2answers
123 views
Can I unit test an inner function in python?
Is there any way to write unittests or doctests for innerfunc?
def outerfunc():
def innerfunc():
do_something()
return innerfunc()
5
votes
4answers
670 views
Examples of using Doctests in Django in an Agile / BDD way
I'm interested in learning how to Doctests and Unit tests in a more Agile / BDD way.
I've found a few tutorials that seem reasonable, but they are just thumbnails.
What I would really like to see is ...
5
votes
4answers
363 views
How do I include unicode strings in Python doctests?
I am working on some code that has to manipulate unicode strings. I am trying to write doctests for it, but am having trouble. The following is a minimal example that illustrates the problem:
# -*- ...
4
votes
1answer
120 views
Can I have an ellipsis at the beginning of the line in a Python doctest?
Python doctests are cool. Let me start with a simple example:
def foo():
"""
>>> foo()
hello world
"""
print "hello world"
Now let's assume some part is somewhat varying, e.g., ...
4
votes
2answers
111 views
Alternative results in doctests
I have a doctest where I test a float conversion:
>>> float('fish')
In Python < 2.7 this results in:
ValueError: invalid literal for float(): fish
In Python 2.7 the result is
...
4
votes
3answers
715 views
Python: using doctests for classes
Is it possible to use Python's doctest concept for classes, not just functions?
If so, where shall I put the doctests - at the class' docstring, or at the constructor's docstring?
To clarify, I'm ...
4
votes
6answers
229 views
Testing warnings with doctest
I'd like to use doctests to test the presence of certain warnings. For example, suppose I have the following module:
from warnings import warn
class Foo(object):
"""
Instantiating Foo ...
4
votes
1answer
612 views
Can python doctest ignore some output lines?
I'd like to write a doctest like this:
"""
>>> print a.string()
foo : a
bar : b
date : <I don't care about the date output>
baz : c
"""
Is ...
3
votes
3answers
56 views
How can I include special characters (tab, newline) in a python doctest result string?
Given the following python script:
# filename: dedupe.py
import re,doctest
def dedupe_whitespace(s,spacechars='\t '):
"""Merge repeated whitespace characters.
Example:
>>> ...
3
votes
1answer
55 views
Doctest for nested docstring
Suppose I have following code:
def foo(s):
"""A dummy function foo. For example:
>>> a = '''This is a test string line 1
This is a test string line 2
This is a test string line 3'''
...
3
votes
1answer
224 views
Running a MATLAB code fragment without namespace pollution
I'm writing a version of Python's doctest test-runner, for MATLAB (it partly works...). For this to work, I need to run the code in people's examples in their m-file help. I want variables to carry ...
3
votes
1answer
167 views
Why does nose finds tests in files with only 644 permission?
Today I ran a bunch of doctests using Python 2.6 on a Ubuntu 9.10 with nose :
nosetests --with-doctest
Ran 0 tests in 0.001s
OK
WTF? I had tests in that files, why didn't that work?
I changed ...
3
votes
3answers
271 views
Python doctest: Skip entire block?
I've got a Python module with docstrings in class methods, and a real-world example in the module docstring. The distinction is that the method-docstrings have been carefully crafted to be utterly ...
2
votes
1answer
57 views
Django - Unitest or Doctest?
I'm about to begin my third medium-sized project and would like (for the first time in my life i admit) to start using unittests.
I have no idea though, which method to use, unitests or doctests.
...
2
votes
1answer
202 views
Is there a way to restart or reset the python interpreter within a python doctest?
I am writing a short tutorial, and would like to be able to run the examples therein using python's doctest using
python -m doctest foo.txt
There is a point in the tutorial at which I want to ...
2
votes
2answers
186 views
Python doctest: result with multiple lines
I can't get a doctest to work with a result which contains multiple lines and may contain empty lines at the beginning. This is probably caused by indentation and parsing issues. I've figured out some ...
2
votes
2answers
171 views
In Django, when should I use doctests instead of unit testing?
From Django docs:
...the database is not refreshed between doctests, so if your doctest requires a certain state you should consider flushing the database or loading a fixture.
Quite frankly, ...
2
votes
1answer
145 views
Run all my doctests for all python modules in a folder without seeing failures because of bad imports
I've started integrating doctests into my modules. (Hooray!) These tend to be files which started as scripts, and are now are a few functions with CLI apps in the __name__=='__main__', so I don't ...
2
votes
3answers
91 views
Is there a Matlab tool similar to Python's Doctest?
In my Python development, doctest has really helped both to
make writing unit tests less annoying, and
integrate usage examples with documentation.
I was wondering, is there anything like this ...
2
votes
3answers
217 views
Doctesting functions that receive and display user input - Python (tearing my hair out)
I am currently writing a small application with Python (3.1), and like a good little boy, I am doctesting as I go. However, I've come across a method that I can't seem to doctest. It contains an ...
2
votes
1answer
153 views
use doctest and logging in python program
#!/usr/bin/python2.4
import logging
import sys
import doctest
def foo(x):
"""
>>> foo (0)
0
"""
print ("%d" %(x))
_logger.debug("%d" %(x))
def _test():
...
2
votes
3answers
137 views
Python: Why does this doc test fail?
This code that's in the doctest works when run by itself, but in this doctest it fails in 10 places. I can't figure out why it does though. The following is the entire module:
class ...
2
votes
2answers
89 views
string quoting issues in doctests
When I run doctests on different Python versions (2.5 vs 2.6) and different plattforms (FreeBSD vs Mac OS) strings get quoted differently:
Failed example:
...
2
votes
4answers
378 views
How can I process this text file and parse what I need?
I'm trying to parse ouput from the Python doctest module and store it in an HTML file.
I've got output similar to this:
**********************************************************************
File ...
2
votes
1answer
94 views
Using doctest “result parser” within unit-tests in Python?
I recently faced a problem about combining unit tests and doctests in Python. I worked around this problem in other way, but I still have question about it.
Python's doctest module parses docstrings ...
2
votes
1answer
186 views
Doctest for dynamically created objects
What is the best way to test code like this (the one below obviously fails while object is created in different block every time):
def get_session(db_name, verbose, test):
"""Returns current DB ...
2
votes
5answers
362 views
C++ equivalent to Python's doctests?
I think the concept of Python's doctests is brilliant, and as a C++ programmer at a real-time shop, I'm quite jealous. We basically have no unit test capability, which is a severe hindrance. I've ...
1
vote
1answer
62 views
Django and tests in docfiles
I'm having a small problem with my test suite with Django.
I'm working on a Python package that can run in both Django and Plone (http://pypi.python.org/pypi/jquery.pyproxy).
All the tests are ...
1
vote
1answer
70 views
python doctest exception test handling
I have the following contents in a file called test2.txt.
>>> def faulty():
... yield 5
... return 7
Traceback(most recent call last):
SyntaxError: 'return' with argument inside ...
1
vote
1answer
156 views
Web2py Modules and Doctests
I have a module applications/webapp/modules/a.py that contains a local_import to import applications/webapp/modules/b.py. I want to doctest a.py and b.py. The web2py shell with "-T" option partially ...
1
vote
1answer
50 views
How can I check with doctest that a program produced certain output?
In one of my functions I'm calling an external program, using subprocess.check_call, which will produce output. How could I use doctest to make sure the output it's producing is the one I'm expecting?
...
1
vote
0answers
26 views
Python-like doctesting in Java?
One of my favorite features in Python (I know it's not really a feature of python) is doc-testing. For me it really augments standard documentation and helps to keep it up to data. Looking for ...
1
vote
2answers
81 views
python doctest: expected result is the same as the “got” result but the test failed
I am on a learning stage of using python as a tool for software QA.
I wrote the next simple test in order to find the letter 'a' in a text file number matrix.
problem is that the test fails even ...
1
vote
1answer
99 views
How to run (Python-like) doctests in JavaScript?
Do any JavaScript test frameworks provide a rough equivalent to Python's doctest?
function add(a, b) {
/**
Returns the sum of `a` and `b`:
> add(1, 3)
4
Add coerces types to ...
1
vote
2answers
135 views
Doctest and relative imports
I'm having trouble using doctest with relative imports. The simple solution is just to get rid of the relative imports. Are there any others?
Say I have a package called example containing 2 files:
...
1
vote
1answer
133 views
How come there's no C# equivalent of python's doctest feature?
Seems like it would be a good way to introduce some people to unit testing.
1
vote
1answer
69 views
Embedding test code or data within doctest strings
I'd like to have several of the doctests in a file share test data and/or functions. Is there a way to do this without locating them in an external file or within the code of the file being tested?
...
1
vote
1answer
409 views
Python doctests / sphinx : style guide, how to use those and have a readable code?
I love doctests, it is the only testing framwork I use, because it is so quick to write, and because used with sphinx it makes such great documentations with almost no effort...
However, very often, ...
1
vote
1answer
232 views
pdb is not working in django doctests
So I created the following file (testlib.py) to automatically load all doctests (throughout my nested project directories) into the __tests__ dictionary of tests.py:
# ./testlib.py
import os, imp, ...
1
vote
1answer
73 views
Handling import errors when using doctest
every now and then when I code in Python, I have to do without certain third-party modules.
Eg. when I'm writing user authentication, it can be done in several ways and one of them is by using LDAP. ...
1
vote
2answers
253 views
Mocking ImportError in Python
I'm trying this for almost two hours now, without any luck.
I have a module that looks like this:
try:
from zope.component import queryUtility # and things like this
except ImportError:
# ...