File: all.rb

package info (click to toggle)
ruby-tilt 2.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 648 kB
  • sloc: ruby: 4,998; makefile: 7
file content (8 lines) | stat: -rw-r--r-- 328 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
files = Dir['./test/*_test.rb']

# For reasons not currently understood, requiring haml breaks coverage
# testing.  As Tilt::HamlTemplate uses Haml::Template in current
# versions of haml, there isn't much point in coverage for it.
files.delete('./test/tilt_hamltemplate_test.rb') if ENV['COVERAGE']

files.each{|f| require f}