<?php
class ExtManagerTest extends SCoreWebTestCase {
function testAuth() {
$this->get_page('ext_manager');
$this->assertResponse(403);
$this->assertTitle("Permission Denied");
$this->log_in_as_user();
$this->log_out();
$this->log_in_as_admin();
$this->assertTitle("Extensions");
$this->assertText("SimpleTest integration");
# FIXME: test that some extensions can be added and removed? :S
}
?>