Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | public function testGetPropertyType() { |
||
37 | $this->assertEmpty( |
||
38 | $this->getScribuntoLuaLibrary()->getPropertyType( '' )[0] |
||
39 | ); |
||
40 | $this->assertEquals( |
||
41 | '_dat', |
||
42 | $this->getScribuntoLuaLibrary()->getPropertyType( 'Modification date' )[0] |
||
43 | ); |
||
44 | $this->assertEquals( |
||
45 | '_wpg', |
||
46 | $this->getScribuntoLuaLibrary()->getPropertyType( 'Foo' )[0] |
||
47 | ); |
||
48 | } |
||
49 | } |
||
50 |