File: .autotest

package info (click to toggle)
ruby-roadie 4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 460 kB
  • sloc: ruby: 3,269; makefile: 3
file content (10 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
# Override autotest default magic to rerun all tests every time a
# change is detected on the file system.
class Autotest
  def get_to_green
    begin
      rerun_all_tests
      wait_for_changes unless all_good
    end until all_good
  end
end