Former\LiveValidationTest::testCanSetMinToNumber PHP Метод

testCanSetMinToNumber() публичный Метод

    public function testCanSetMinToNumber()
    {
        $this->former->withRules(array('foo' => 'min:42'));
        $input = $this->former->number('foo')->__toString();
        $matcher = $this->matchField(array('min' => '42'), 'number');
        $this->assertHTML($matcher, $input);
        $this->assertControlGroup($input);
    }
LiveValidationTest