Files
snipe-it/tests/unit/AssetTest.php
T
2015-08-12 23:30:27 -07:00

22 lines
343 B
PHP

<?php
class AssetTest extends TestCase {
public function testConstructor() {
$f=new Asset();
}
public function testBadIP() {
$f=new Asset();
$f->name="test 1";
$f->format="IP";
$f->element="text";
$f->save();
$this->assertFalse($f->check_format("300.2.3.4"));
}
}