I used to be able to launch all my Selenium2 WebDriver tests in Ruby on Rails via rake test:units. But recently, my test case(s) won't be found anymore. I dont get any notification or error message. Traced, the test just ends after Execute test:units
It still can be launched manually by calling rake test:unit TEST=test/unit/foo_bar or using ruby [path] to launch the file.
The test itself still works just fine, so I don't know why the automatic test doesn't start anymore. Maybe I violated some naming conventions? This is how everything is named:
- File: foo_bar.rb
- Class: FooBar
- Method: test_foo_bar
Further I use some additional selfwritten requirements stored in test/unit/helpers. Might this be another source of problems?
Thank you.