Docunext


Behavior Driven Development

December 26th, 2009

Behavior Driven Development (BDD) is an awesome paradigm that I've recently learned about while transitioning to Ruby as my primary development language.

I'm getting familiar with a couple BDD frameworks available for Ruby:

  • RSpec
  • Cucumber

If I understand correctly, these two frameworks can actually work in concert with each other.

The application I'm starting to use BBD with is called Regdel, an open source bookkeeping program written in Ruby, and here's an example of a very simple RSpec test:

  it "should respond to /journal/0" do
    get '/journal/0'
    last_response.should be_ok
  end

This test also leverages Rack::Test, because Regdel is a Sinatra application, and like most Ruby frameworks, Sinatra is a Rack-compatible framework. To "test the tests", I'm using Rake to run the tests, and using Rcov, a code coverage tool, to measure how much of the application is getting tested.

Cucumber takes the idiom further, by defining full-features instead of simple functions. I haven't quite gotten there yet with Regdel, but another bookkeeping project, Bookkeeper, uses Cucumber so that may be a good way to learn more about it.

With regards to the software development life cycle in general, I expect that BDD will have a dramatic effect on the quality and robustness of software that it produces, while maintaining the rapid speed that agile development practices support.

In my previous experiences as an agile "dogfooding" developer, I would test software by using it, modifying functionality and implementing new features along the way. That works fine most of the time, but there is a substantial downfall: the lack of comprehensive regression testing, i.e. checking to make sure changes to one part of a program do not break other parts of it. I haven't yet witnessed it myself, but I expect that the combination of BDD and comprehensive code coverage testing to greatly alleviate, if not eliminate that downfall. :-)

Yearly Indexes: 2003 2004 2006 2007 2008 2009 2010 2011 2012 2013 2015 2019 2020 2022