package = new MBPackage('SugarTestPackage'); } public function tearDown() { unset($this->package); } public function testPopulateFromPostKeyValueWithSpaces() { $_REQUEST = array( 'description' => '', 'author' => 'Sugar CRM', 'key' => ' key ', 'readme' => '' ); $this->package->populateFromPost(); $this->assertEquals('key', $this->package->key); } public function testPopulateFromPostKeyValueWithoutSpaces() { $_REQUEST = array( 'description' => '', 'author' => 'Sugar CRM', 'key' => 'key', 'readme' => '' ); $this->package->populateFromPost(); $this->assertEquals('key', $this->package->key); } } ?>