mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 06:37:55 +08:00 
			
		
		
		
	Before the fix, in case when RBAC tests for PgSQL and MySQL are runed in same process sequentially, the second one reused old DB connection creating mess in DBMS. Ha, see the rhyme: Creating mess in DBMS. :D
		
			
				
	
	
		
			20 lines
		
	
	
		
			357 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			357 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @link http://www.yiiframework.com/
 | 
						|
 * @copyright Copyright (c) 2008 Yii Software LLC
 | 
						|
 * @license http://www.yiiframework.com/license/
 | 
						|
 */
 | 
						|
 | 
						|
namespace yiiunit\framework\rbac;
 | 
						|
 | 
						|
/**
 | 
						|
 * MySQLManagerTest.
 | 
						|
 * @group db
 | 
						|
 * @group rbac
 | 
						|
 * @group mysql
 | 
						|
 */
 | 
						|
class MySQLManagerTest extends DbManagerTestCase
 | 
						|
{
 | 
						|
    protected static $driverName = 'mysql';
 | 
						|
}
 |