/**
  * @depends testGetAuthSecretEnv
  */
 public function testGetAuthSecretConfig()
 {
     putenv('CB_AUTH_SECRET=qwijibo');
     $client = new Client(array('secret' => 'custom'));
     $this->assertEquals('custom', $client->getAuthSecret());
 }