예제 #1
0
파일: ConsumerTest.php 프로젝트: travisj/zf
 public function testSetsUserAuthorizationUrlFromOptionsArray()
 {
     $options = array('userAuthorizationUrl' => 'http://www.example.com/authorize');
     $consumer = new Zend_Oauth_Consumer($options);
     $this->assertEquals('http://www.example.com/authorize', $consumer->getUserAuthorizationUrl());
 }