OptionsTest::testInsert PHP Method

testInsert() public method

public testInsert ( )
    public function testInsert()
    {
        $option = new Options();
        $option->option_name = 'test_insert_' . uniqid();
        $option->option_value = serialize(array('test' => '1234'));
        $option->save();
    }