4

Possible Duplicate:
How to remove unit test and replace it with rspec?

Kinda odd question here: when you go with rpsec instead of test::unit on rails, what do you do with the test dir? Keep it (for any compatibility issues maybe?) or remove it?

Community
  • 1
  • 1
Adrian
  • 43
  • 2

1 Answers1

1

I have always kept it, in case some plugin or generator expects to find it there.

If you don't like having the test directory, I suggest you try to remove it and see if it works. You can always recreate it later, if you notice that you need it.

Antti Tarvainen
  • 1,209
  • 12
  • 14