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

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112865 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2010-10-19 03:01:29 +00:00
parent 31d442f5da
commit ef36436f75

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();