speedmax / h2o-php

A beautiful template engine for PHP in Django style

This URL has Read+Write access

Jeff Long (author)
Sat Jun 06 18:39:57 -0700 2009
speedmax (committer)
Mon Aug 03 09:29:44 -0700 2009
h2o-php / spec / runner.php
100644 19 lines (16 sloc) 0.453 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
require 'spec_helper.php';
 
class AllTests extends TestSuite {
    function AllTests() {
        $this->TestSuite('All tests');
        
        $tests = array_merge(
            glob(dirname(__FILE__).'/*_test.php'),
            glob(dirname(__FILE__).'/*_spec.php')
            // glob(dirname(__FILE__).'/loader_spec.php')
        );
 
        foreach ($tests as $test) {
            $this->addFile($test);
        }
    }
}
?>