I have a project which works well with rails default test suite Test::Unit and I have no reason to change the tests I have written. But when I write integration test with capybara, I found that capybara always work with rspec and I have some problem when using capybara with Test::Unit. So i decide to use rspec in Integration Test.
But here is the problem. After running rails g rspec:install
the cmd rails g model
will create test in spec, how can i use rspec for only integration test and use Test::Unit in other test.
Thanks in advance.