Re: unittest for system testing

2012-10-18 Thread Steven D'Aprano
Sorry for breaking threading, but the original post has not come through to me. > On 18/10/2012 01:22, Rita wrote: > Hi, > > Currently, I use a shell script to test how my system behaves before I > deploy an application. For instance, I check if fileA, fileB, and fileC > exist and if they do I go

Re: unittest for system testing

2012-10-17 Thread Dave Angel
On 10/17/2012 08:22 PM, Rita wrote: > Hi, > > Currently, I use a shell script to test how my system behaves before I > deploy an application. For instance, I check if fileA, fileB, and fileC > exist and if they do I go and start up my application. > > This works great BUT > > I would like to use py

Re: unittest for system testing

2012-10-17 Thread Rita
thanks. I suppose I would need a simple example from one of these libraries. ( i typed too soon for , "no code needed" ) On Wed, Oct 17, 2012 at 8:49 PM, Mark Lawrence wrote: > On 18/10/2012 01:22, Rita wrote: > >> Hi, >> >> Currently, I use a shell script to test how my system behaves before

Re: unittest for system testing

2012-10-17 Thread Mark Lawrence
On 18/10/2012 01:22, Rita wrote: Hi, Currently, I use a shell script to test how my system behaves before I deploy an application. For instance, I check if fileA, fileB, and fileC exist and if they do I go and start up my application. This works great BUT I would like to use python and in part