Which are the most advanced frameworks and tools there are available for python for practicing Behavior Driven Development? Especially finding similar tools as rspec and mocha for ruby would be great.

link|improve this question

feedback

7 Answers

up vote 15 down vote accepted

Ian Bicking recommends using doctest for behavior driven design:

I personally tend to use nose and voidspace mock in a behavior driven design style. Specifically, the spec plugin for nose is excellent for BDD.

link|improve this answer
3  
Andrew Bennetts recently wrote a couple of post about why he thinks doctest are abused. andrew.puzzling.org/diary/2008/October/23/narrative-tests andrew.puzzling.org/diary/2008/October/24/more-doctest-problems – ddaa Oct 24 '08 at 12:18
2  
I think doctest actually is more aligned with the philosophy of BDD, when you treat it as it was intended: you start writing about the software, and then intersperse that with examples that also form tests. It's been described as "document driven development" as well -- the point is to focus on outward describable functionality, not internal units of work. I think tradition xUnit is horrible at doing that. – ianb Apr 20 '09 at 18:38
feedback

Lettuce means to be a cucumber-like tool for python: http://lettuce.it/

You can grab the source at github.com/gabrielfalcao/lettuce

link|improve this answer
windows users considering lettuce should know, at the time of writing, support for that OS is not straightforward. – leonigmig Mar 6 '11 at 13:41
feedback

I recommend you to use Pyramid.
It's a set of tools developed to help programmers in the practice of BDD and TDD. It is basically composed by: pycukes, specloud, ludibrio and should-dsl.

Should-dsl will give you RSpec-like expectations.

Everything you can do with RSpec expectation API, should-dsl does too.

You can grab the last version here: http://github.com/rodrigomanhaes/should-dsl/tree/matchers-as-functions

Specloud helps you on running BDD-like unittests. You can install it by doing

pip install specloud

Ludibrio is a library for test doubles (Mocks, Stubs and Dummies). Install it via

pip install ludibrio

And PyCukes is the main tool for BDD. It will run the Scenarios, etc. Again,

pip install pycukes

For more info please read the tools documentation at PyPi.

link|improve this answer
Found this useful document while looking for details of your answer: arxiv.org/pdf/1007.1722 – phaedrus Sep 10 '11 at 10:37
I like should-dsl. I've been considering a DSL for python BDD - there are a few, this one seems quite expressive. – Danny Staple Mar 26 at 12:30
feedback

Great post and answers. Just wanted to update to include Freshen in this list as I read pycukes is discontinued. A good post about using BDD and Django with Freshen is here.

link|improve this answer
feedback

The Pyccuracy project is an effort to provide a domain-specific language for BDD in Python.

Unlike doctest, which works at the API level, it encodes higher-level operations such as loading a web page and submitting a form. I haven't used it but it looks somewhat promising if that is what you're looking for.

link|improve this answer
feedback

I like Pyccuracy a lot. I'm implementing it on a mid sized project these days.

link|improve this answer
3  
I'd be interested in any recent Pyccuracy vs Lettuce comparison anyone could share. – michela Dec 14 '10 at 3:06
Maybe include Freshen (linked in an answer above) too in the comparison. – phaedrus Sep 10 '11 at 10:41
Already asked here: quora.com/… – phaedrus Sep 10 '11 at 10:42
feedback

I am probably completely missing the point, but what I retained of the original BDD paper was that BDD was just TDD repackaged to emphasize some best practices.

If my interpretation is correct, you can get a BDD framework just by renaming methods around in any xUnit implementation. So just go ahead and use the standard library's unittest.

EDIT: A quick google turned up a Behaviour module in the Cheese Shop. Further searching for BDD there did not find anything else.

link|improve this answer
TDD really is the revolutionizing practice in a totally different scale than BDD. Still I've come to appreciate way of writing test-drivenly in BDD style. – JtR Oct 24 '08 at 10:17
BDD started at the unit level, this is true. It grew fairly quickly to encompass system-level behaviour, where the contexts, events and outcomes benefit from a bit more reusability - hence the proliferation of tools to support both that and natural-language scenarios captured from conversations with non-technical stakeholders. Since this question was asked we've taken BDD up to project vision level, using Feature Injection, with the same emphasis on discovery through conversation and domain language. Still nothing new under the sun. – Lunivore Mar 7 '11 at 11:13
I like this talk about bdd youtube.com/watch?v=pherUEzdJow . I shows a good way to write specifications and have it as tests. – aisbaa Apr 4 at 14:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.