Entries Categorized as 'Programming'

Using find in Linux

Date August 11, 2006 by Isaac

The find command is Linux is seriously cool. It allows you to do so much more than simply locate where a file lives. You can also do nifty stuff like delete all the temporary files on your whole hard drive, find broken links, delete empty files, search within files, and more. You can read about [...]

Creating PDF’s in Python

Date July 25, 2006 by Isaac

Whatever your role or occupation there are doubtless times where you need to write a report. Most of the reports that I turn in are unique and need to be manually generated. However, my weekly test status report is pretty much the same every week and basically its just the stats that change. Poking around [...]

Results Comparison in PyFIT Fixtures

Date June 26, 2006 by Isaac

I’m not sure if this is the intended behavior or not, but I found a “feature” in PyFIT that had me smashing the keyboard with my face. According to the PyFIT documentation you should be able to create a table like this: |TestClass| |InputString |OutputNum | |Hello World |>10 | |Python is cool!|1 < _ [...]

Running FitNesse tests from the command line with PyFIT

Date June 21, 2006 by Isaac

I’m really starting to get into this whole FIT/FitNesse thing. Creating test cases is now easy and my managers love the HTML documentation and results that come out of the tools. Until now I’ve just been using FitNesse, but thanks to the hard work of Grig Gheorghiu and John Roth (the PyFIT author) here’s how [...]