BUGFIX Protect MemberTest from side effects caused by auth_openid and forum modules

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@110894 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-09-17 01:21:10 +00:00 committed by Sam Minnee
parent 316ef6c106
commit 139ab46240

View File

@ -8,6 +8,15 @@ class MemberTest extends FunctionalTest {
protected $orig = array();
protected $local = null;
protected $illegalExtensions = array(
'Member' => array(
// TODO Coupling with modules, this should be resolved by automatically
// removing all applied extensions before a unit test
'ForumRole',
'OpenIDAuthenticatedRole'
)
);
function __construct() {
parent::__construct();