Respect\Validation\Rules\FileTest::testValidFileShouldReturnTrue PHP Method

testValidFileShouldReturnTrue() public method

    public function testValidFileShouldReturnTrue()
    {
        $GLOBALS['is_file'] = true;
        $rule = new File();
        $input = '/path/of/a/valid/file.txt';
        $this->assertTrue($rule->validate($input));
    }