/**
  * Test that you can create your own custom timezone
  */
 public function testCustomTimezone()
 {
     $timezone = new qCal_Timezone("Custom", "5400", "CSTM", false);
     // hour and a half past GMT
     $this->assertEqual($timezone->getOffsetSeconds(), "5400");
 }