예제 #1
0
파일: Mime.php 프로젝트: robtuley/knotwerk
 function testCanModifyMimeType()
 {
     $mime = new T_File_Mime('jpg');
     $mime->setType(T_Mime::CSS);
     $this->assertSame($mime->getType(), T_Mime::CSS);
     $this->assertSame($mime->getExt(), 'css');
     $this->assertSame($mime->__toString(), 'text/css');
 }