mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 14:46:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			736 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			736 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @link http://www.yiiframework.com/
 | 
						|
 * @copyright Copyright (c) 2008 Yii Software LLC
 | 
						|
 * @license http://www.yiiframework.com/license/
 | 
						|
 */
 | 
						|
 | 
						|
namespace yiiunit\framework\web\session\pgsql;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class DbSessionTest.
 | 
						|
 *
 | 
						|
 * @author Dmytro Naumenko <d.naumenko.a@gmail.com>
 | 
						|
 *
 | 
						|
 * @group db
 | 
						|
 * @group pgsql
 | 
						|
 */
 | 
						|
class DbSessionTest extends \yiiunit\framework\web\session\AbstractDbSessionTest
 | 
						|
{
 | 
						|
    protected function setUp()
 | 
						|
    {
 | 
						|
        if (defined('HHVM_VERSION')) {
 | 
						|
            $this->markTestSkipped('HHVMs PgSQL implementation does not seem to support blob columns in the way they are used here.');
 | 
						|
        }
 | 
						|
 | 
						|
        parent::setUp();
 | 
						|
    }
 | 
						|
 | 
						|
    protected function getDriverNames()
 | 
						|
    {
 | 
						|
        return ['pgsql'];
 | 
						|
    }
 | 
						|
}
 |