-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean up Zenmap unit tests #85
Comments
I'd like to work on this for the SoC2015. My questions being given a full-time commitment to this how long would something like this take? Is there a list of all the functions and modules categorized into either your step 1 or step 2 categories? Where are the current unittest located? |
@Amertz08 I would anticipate that this would take about 2 or 3 weeks of full-time work, but I'm a bad estimator of other people's time budgets. The modules are in the |
Not very useful, but I got this failure
The problem is that the |
@dmiller-nmap I like to work on this. Not fulltime. But when i have time i will do it. It's ok to use PyUnit for this write..? |
@berdario probably too late to reply but may be useful for someone else |
Lots of Zenmap's component Python modules have unit tests of some sort or other, but many are just "run this function
if __name__=='__main__'
" type of things. We currently use the test discovery built in to Python 2.7'sunittest
library, so this task could be taken in a few different steps:unittest
test cases so that autodiscovery can pick them up.zenmap/tests/
directory) so we don't rely on autodiscovery, which doesn't work on Python 2.6 and earlier.The text was updated successfully, but these errors were encountered: