RedUNIT\Postgres\Writer::testTypesInvalidMoney PHP Method

testTypesInvalidMoney() public method

...SnpDNVGPAC7w0G) as PostgreSQL money types. Then, once R::store is called on the bean, it chokes and throws the following error: PHP Fatal error: Uncaught [22P02] - SQLSTATE[22P02]: Invalid text representation: 7 ERROR: invalid input syntax for type money: ....
public testTypesInvalidMoney ( ) : void
return void
    public function testTypesInvalidMoney()
    {
        $bean = R::dispense('bean');
        $bean->nomoney = '$2y$12$85lAS';
        R::store($bean);
        $cols = R::getColumns('bean');
        asrt($cols['nomoney'], 'text');
        $bean = R::load('bean', $bean->id);
        asrt($bean->nomoney, '$2y$12$85lAS');
        $bean->note = 'taint';
        R::store($bean);
        $bean = R::load('bean', $bean->id);
        asrt($bean->nomoney, '$2y$12$85lAS');
    }