So I'm extending a friend's project and he's done all the development with TDD using Test::Unit
I use Rspec in all my projects and want to avoid having to learn a new tool. Is it bad practice to have 2 separate test suites, one in Test::Unit and one in Rspec?
I've also considered using Shoulda to extend Test::Unit to sort of feel like I'm using Rspec.