Skip to content

Instantly share code, notes, and snippets.

@akiyan
Created November 8, 2013 08:22
Show Gist options
  • Save akiyan/7367930 to your computer and use it in GitHub Desktop.
Save akiyan/7367930 to your computer and use it in GitHub Desktop.
<?php
class WebAuthTest extends PHPUnit_Extensions_Selenium2TestCase {
protected function setUp() {
$this->setBrowser('phantomjs');
$this->setBrowserUrl('http://www.google.com/');
}
public function testText() {
$this->url('http://127.0.0.1:10080/auth/twitter');
$this->assertEquals('Hello', $this->title());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment