crunchbutton/travis/Tests/UserTest.php
Devin Smith 6204686213 #4160
2014-11-22 11:44:25 -08:00

11 lines
303 B
PHP

<?php
class UserTest extends PHPUnit_Framework_TestCase {
public function testInvite() {
$code = Crunchbutton_User::inviteCodeGenerator();
$match = preg_match('/[qwertyupasdfghjklzxcvbnm]{3}[123456789]{3}[qwertyupasdfghjklzxcvbnm]{3}/i',$code);
$this->assertTrue($match ? true : false);
}
}