Run code run!

Hi,

What is the best practice to code writing cycle for a typical ruby project? What are you using most often ?

Here are two possibilities that I can think of

A) Run code as frequently as you can

1) Think about design
2) Write little bit of code (code in small steps)
3) Go to check for API documentation to make sure I use API correct
4) Run code (with or without UT)
5) Fix errors
6) Start from 1)

B) Run code as late as you can

1) Think about design
2) Write down code mixed with a lot of comments and to do's
3) Continue 1) and 2) until you think problem is solved.
4) Run Code
5) Fix Errors
6) Check API
7) Continue 4), 5),6) until problem is solved (all UT pass)

would probably be close to A) but with automated testing injected in the
loop.

A) Run code as frequently as you can

1) Think about design

1.1) write unit tests based on that design

(Look at the API before you write code:)

3) Go to check for API documentation to make sure I use API correct

2) Write little bit of code (code in small steps)

3.1) make sure that the code you've written is covered by some test
3.2) run unit tests and make sure that all the ones that used to pass pass, and hopefully some new ones pass as well.

4) Run code (with or without UT)
5) Fix errors
6) Start from 1)

The main problem with just running the code (and not unit tests) is that the way you test the code, you might not use all the functionality. Unit tests should cover it. It's a good idea to run the code as a real user too, but if that's all you're doing, you might never actually test the code you've written that covers atypical operations.

The other thing you might want to throw in here at step 7 or so is "refactor". Every once in a while, maybe once you've added a big functional chunk, go back over the code and say to yourself "What do I have here that I don't need? Do I have any repeated code? Could I simplify any of this?"

Ben

ยทยทยท

On Sep 9, 2010, at 08:41, Eugen Ciur wrote: