annotate lib/plugins/awesome_nested_set/.autotest @ 1511:e1cfd013ef49 live

Fix #832 main page of a project should not have "Overview" as the first word of the html title
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Fri, 21 Mar 2014 14:11:12 +0000
parents 433d4f72a19b
children
rev   line source
Chris@1115 1 Autotest.add_hook :initialize do |at|
Chris@1115 2 at.clear_mappings
Chris@1115 3
Chris@1115 4 at.add_mapping %r%^lib/(.*)\.rb$% do |_, m|
Chris@1115 5 at.files_matching %r%^test/#{m[1]}_test.rb$%
Chris@1115 6 end
Chris@1115 7
Chris@1115 8 at.add_mapping(%r%^test/.*\.rb$%) {|filename, _| filename }
Chris@1115 9
Chris@1115 10 at.add_mapping %r%^test/fixtures/(.*)s.yml% do |_, _|
Chris@1115 11 at.files_matching %r%^test/.*\.rb$%
Chris@1115 12 end
Chris@1115 13 end