To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / lib / plugins / awesome_nested_set / .autotest @ 1298:4f746d8966dd
History | View | Annotate | Download (341 Bytes)
| 1 |
Autotest.add_hook :initialize do |at| |
|---|---|
| 2 |
at.clear_mappings |
| 3 |
|
| 4 |
at.add_mapping %r%^lib/(.*)\.rb$% do |_, m| |
| 5 |
at.files_matching %r%^test/#{m[1]}_test.rb$%
|
| 6 |
end |
| 7 |
|
| 8 |
at.add_mapping(%r%^test/.*\.rb$%) {|filename, _| filename }
|
| 9 |
|
| 10 |
at.add_mapping %r%^test/fixtures/(.*)s.yml% do |_, _| |
| 11 |
at.files_matching %r%^test/.*\.rb$% |
| 12 |
end |
| 13 |
end |