-4

Can web application be developed in rails with TDD approach using Junit? or what other approcach we can follow in rails for TDD? Kindly suggest me? What about Cucumber and rspec?

Sonal S.
  • 1,444
  • 1
  • 15
  • 31

1 Answers1

1

The current canonical way would be to use rspec. For feature requests, use rspec with capybara. You can look at the spec directory here https://github.com/mhartl/sample_app for a very popular example. MiniTest is also popular.

timpone
  • 19,235
  • 36
  • 121
  • 211