示例#1
0
 function test_Constants()
 {
     $this->dir('Constants');
     $original = file_get_contents($this->dir() . 'in.css');
     $expected = file_get_contents($this->dir() . 'out.css');
     $css = Constants::pre_process($original);
     $css = Constants::replace($css);
     $this->assertEqual($css, $expected);
 }