Does Django have BDD testing tools comparable to Rails' testing tools?

Viewed 7976

Ruby/Rails enjoy some really nice and powerful Behavior Driven Design/Development testing frameworks like Cucumber and RSpec.

Does Python/Django enjoy the same thing (I'm not talking about simple unit testing like PyUnit)?

5 Answers

I'm working with Robot Test Framework http://code.google.com/p/robotframework/. It is a generic test automation framework for acceptance testing and acceptance test-driven development (ATDD).

It's flexible and powerful and also allows BDD style in a similar way to lettuce/cucumber.

Related