Re: [Tutor] Modules and Test Suites

2009-12-29 Thread Lie Ryan
On 12/30/2009 2:11 AM, Stephen Nelson-Smith wrote: I do quite a lot of programming in Ruby. When I do so, my code tends to have the following layout: /path/to/src/my_project Inside my_project: lib/ test/ my_project.rb my_project.rb uses classes and helper methods in lib Inside test, I have

Re: [Tutor] Modules and Test Suites

2009-12-29 Thread Eike Welk
Hello Stephen! On Tuesday 29 December 2009, Stephen Nelson-Smith wrote: > I do quite a lot of programming in Ruby. When I do so, my code > tends to have the following layout: > > /path/to/src/my_project > > Inside my_project: > > lib/ > test/ > my_project.rb > > b) If so - how can I do it in Pyt

[Tutor] Modules and Test Suites

2009-12-29 Thread Stephen Nelson-Smith
I do quite a lot of programming in Ruby. When I do so, my code tends to have the following layout: /path/to/src/my_project Inside my_project: lib/ test/ my_project.rb my_project.rb uses classes and helper methods in lib Inside test, I have a test suite that also uses classes and helper method