Lazer\Classes\Helpers\FileTest::testCreateFile PHP Method

testCreateFile() public method

public testCreateFile ( )
    public function testCreateFile()
    {
        $object = $this->object->table('foo');
        $object->setType('bar');
        $this->assertFalse($this->root->hasChild('foo.bar.json'));
        $this->assertInternalType('integer', $object->put('test'));
        $this->assertTrue($this->root->hasChild('foo.bar.json'));
    }