Learn how to do Specification by Example
I’m speaking here:
- Agile Practitioners 2012, Tel Aviv, Israel, 30-31 January 2012
- Software Passion Summit, Göteborg, Sweden, March 19-20, 2012
- Scandinavian Developers conference, Göteborg, Sweden, April 17, 2012
- Dutch Testing Conference, Bussum, NL, 18 April
- Testing and Finance, London, 17 May 2012
articles Archive
-
Entaggle me
Posted on September 24, 2011 | No CommentsI joined entaggle. You can now tag me there!. -
Kiss and fly
Posted on September 12, 2011 | No CommentsI got the following question from a blog reader recently and the answer should be interesting to many other people: With simple scenarios it’s all well, but we have a very complex domain. Do you have any examples of Cucumber files with very complex domains and features? A former colleague... -
The Climbing Game, or how I learned everything I needed to run a nice workshop
Posted on June 28, 2011 | 4 CommentsI recently facilitated two advanced BDD/Specification by Example workshops for the Australian branch of a well known agile consultancy. This was an interesting challenge because most of the workshop participants already had experience with the technique, some quite a lot in fact, but it was impossible to measure what they... -
The Mistake at the Heart of Agile
Posted on June 9, 2011 | 7 CommentsMichael Feathers presented yesterday at the Norwegian Developer Conference on “The Mistake at the Heart of Agile.” “We got some things wrong early on,” suggested Feathers. -
SC2011: Lean code solution in awk
Posted on May 26, 2011 | No CommentsBEGIN {RS=",|\n"} /Apples|Pommes|Mele/{total+=100; apples++; if (apples%4==0) total-=100;} /Pommes/{pommes++; if (pommes%3==0) total-=100; } /Mele/{mele++; if (mele%2==0) total-=50;} /Cherries/{total+=75; cherries++; if (cherries%2==0) total-=20;} /Bananas/{total+=150; bananas++; if (bananas%2==0) total-=150;} //{fruit++; if (fruit%5==0) total-=200;} END{print total;}

