Author: Henrique Moody (henriquemoody@gmail.com)
Inheritance: extends Respect\Validation\Rules\AbstractRule
Example #1
0
 /**
  * @expectedException Respect\Validation\Exceptions\MimetypeException
  * @expectedExceptionMessageRegExp #".+/MimetypeTest.php" must have "application.?/json" mimetype#
  */
 public function testShouldThowsMimetypeExceptionWhenCheckingValue()
 {
     $rule = new Mimetype('application/json');
     $rule->check(__FILE__);
 }