Archives
BugNET 0.7.899.0 is released
Submitted by Opensourcetesting.org - latest news on Tue, 12/02/2008 - 10:22.Jameleon 3.3-M5 is released
Submitted by Opensourcetesting.org - latest news on Tue, 12/02/2008 - 10:23.New Tutorial at QCon
Submitted by noreply@blogger.com (Steve Freeman) on Tue, 12/02/2008 - 11:03.Python - 15 Line HTTP Server - Web Interface For Your Tools
Submitted by Corey Goldberg on Tue, 12/02/2008 - 16:11.I write a lot of command line tools and scripts in Python. Sometimes I need to kick them off remotely. A simple way to do this is to launch a tiny web server that listens for a specific request to start the script.
I add a "WebRequestHandler" class to my script and call it from my main method. There is a "do_something()" method in the class. You call your code from this method.
All you have to do is launch your script and it will sit there and wait for requests. If the request is bad, it spits back a 404 error. If the request path matches what we are looking for (in this case "/foo"), the code is launched.
Do you keep notes about “the first below the line” tests?
Submitted by Ainars Galvans on Tue, 12/02/2008 - 16:25. exploratory testingA tagging meme reveals I short-change design
Submitted by Brian Marick on Tue, 12/02/2008 - 17:29.Test-driven Object-Relational Persistence
Submitted by jason@parlezuml.com (Jason Gorman) on Tue, 12/02/2008 - 17:30.I like to ensure that application logic and persistence are completely seperate concerns. As such, I write two sets of tests - one to test that my application works logically without persistence, and another to test that my domain objects are persisted (saved and retrieved) correctly.
