The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
18 views

Python unittest: how to use setUpClass() and tearDownClass() with arguments

I would like to use python unittest setUpClass and tearDownClass methods with arguments. More specifically, here is what I am doing now: import unittest2 as unittest cache = VCache(arg1, arg2, arg3) ...
2
votes
0answers
24 views

Solving the confusion generated by too many ways to run unittest in python

I am trying to implement a full and clean way of testing python packages, one that would suit the folowing requirements: execute tests on clean machines without setting them up (virtualenv) gather ...
2
votes
2answers
43 views

Is there a way to add metadata in py files for grouping tests?

Lets say I have the following testcases in different files TestOne.py {tags: One, Two} TestTwo.py {tags: Two} TestThree.py {tags: Three} Each of which inherits from unittest.TestCase. Is there ...
1
vote
3answers
81 views

How to do an “early return” of an import under Nose?

I'm curating a large number of unit tests for a large Python project. We use nose to do our test discovery and execution. I have some test files that really shouldn't be run in certain conditions. ...
1
vote
3answers
51 views

Django unittests - ImproperlyConfigured error

Im trying to write tests for my module. When i run: python manage.py test my_module Im getting message: django.core.exceptions.ImproperlyConfigured: Please fill out the database NAME in the ...
0
votes
2answers
122 views

What is the most pythonic way to support unittest2 features across a range of Python versions?

I can think of two ways to ensure that I can use modern features from the unittest library across a wide range of Python versions: try: from unittest2 import TestCase except ImportError: from ...
1
vote
1answer
97 views

unavailiable assertion methods in python 3.1 unittest

I'm new to python programming and especially to unit-testing framework. For some reason working with pyDev (py 3.1 interpreter) I cannot use all of those new assert methods (such as ...
1
vote
0answers
89 views

python -m unittest2 discover not working

I'm using the excellent Tox tool to test my code. Here is my tox.ini: [tox] envlist = py26,py27,py31,py32,py33 [testenv] deps = ParamUnittest commands = python -m unittest discover tests ...
0
votes
1answer
77 views

How to test methods that compute relative time in python using unitttest?

I have a method in a django model that does a computation relative to the current time. Here is a snippet: def next_date(): now = datetime.now() trial_expires = max(self.date_status_changed + ...
0
votes
0answers
70 views

ios SenTestCase how to verify the switch of controller

if my code is as below: -(IBAction) doNewInvitation { if ([@"1" isEqualstoString:usertype]) { UIViewAlert *alert = [[UIViewAlert alloc] initWithTitle:@"title", nil) ...
1
vote
1answer
308 views

python nose from a script, gathers test classes from files and then runs tests

How would I use nose from a python script to gather python files from a directory foreach file run all test classes found using passed parameters Here's an example, given files /run.py ...
1
vote
2answers
124 views

Unit testing objects in Python - Object is not over written in setup

I'm unit testing classes in Python using unittest. As I understand it, unittest calls the setUp function before each test so that the state of the unit test objects are the same and the order the test ...
1
vote
2answers
948 views

ImportError: No module named test_data, but test_data.py in same directory as test.py under PyCharm using virtualenv

In test.py, I am trying to import test_data: import unittest2 import re from test_data import receipt1_example test_data.py is in the same directory as test.py. I get the following error: ...
2
votes
1answer
644 views

How to use unittest2 in python setup.py test

How can I force python setup.py test to use the unittest2 package for testing instead of the built-in unittest package?
5
votes
2answers
202 views

How to assert that a method is decorated with python unittest?

I have a decorator and I want to assert that certain methods in my code are decorated with it. import functools def decorator(func): def _check_something(*args, **kwargs): # some logic ...
0
votes
2answers
384 views

How do I handle multiple asserts within a single Python unittest?

This is a problem that came up when performing a single test that had multiple independent failure modes, due to having multiple output streams. I also wanted to show the results of asserting the ...
0
votes
2answers
344 views

Unit Testing a c# project which uses native code

I have three projects 1)unmanaged c++ containing full business logic 2)C++/CLI (Project name managed) 3)C# GUI I have added the library file of unmanaged c++ in C++/CLI and then dll of C++/CLI in ...
2
votes
1answer
371 views

python unittest2 - exposing test method name to setup method

I need to find the name of the test method about to be run from within the SetUp() method that unittest runs before each test. How can I do this without running every test method seperately? Example: ...
0
votes
2answers
120 views

renaming default python-unittest function names

python's unittest testrunner looks for setUpModule() defined in a file to perform before running any test specified in the module. is there a way to use a decorator or some other tool inorder to ...
2
votes
1answer
189 views

Running python unit test over LSF

I need to parallelize my python unit-tests which I wrote using the default unittest module. I'm trying to decide between two approaches: keep using unittest but use a custom 'multiprocess' runner ...
1
vote
1answer
74 views

What's a good practice when unittesting views that perform calls to external services in django

We have this view that look something like this: from fblib import Facebook def foo(request): fb = Facebook( settings.facebook ) data = fb.get_thingy() return render_to_response( .. , ...
3
votes
0answers
273 views

Django unit tests spews database error - cannot commit transaction - SQL statements in progress

I'm using unittest2 together with manage.py test, and before it even seems to run any tests, it spews a horrid database error, as below. I'm in my development environment (actually on a dreamhost ...
2
votes
1answer
353 views

Python Unittest2 - avoid including a TestCase in discover()

I'm using unittest2 on Python2.5 to discover tests with unittest.TestLoader.discover, like this: suite = unittest2.loader.TestLoader().discover(test_path) unittest2.TextTestRunner(verbosity=2, ...
3
votes
1answer
161 views

How to get per-testcase scoping for dependency injected objects in Python?

I'm using python-inject, python 2.6 (with unittest2). We have classes to test that use injection, and test-cases which also use the same values. We currently use inject.appscope, to "singletonize" ...
5
votes
1answer
2k views

python unittest discovery does not discover tests

Python's unittest discover does not find my tests! I have been using nose to discover my unit tests and it is working fine. From the top level of my project, if I run nosetests I get: Ran 31 tests ...
3
votes
2answers
165 views

Is it possible to run doctests using unit2

I recently switched from nose to the new unittest2 package for my python unit testing needs. It does everything I want, except from the fact that I can't get its "discover" command to recognize the ...
3
votes
3answers
519 views

How can you get unittest2 and coverage.py working together?

In theory something like coverage run unit2 discover Should work but it currently just errors out. If you are a nose user which will be the equivalent of nosetests --with-coverage