From f6d65e533c62f6deb21342d4901ece24497b433e Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Thu, 4 Jun 2015 07:31:04 +0200 Subject: Update to MediaWiki 1.25.1 --- tests/phpunit/includes/password/PasswordTest.php | 39 ++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 tests/phpunit/includes/password/PasswordTest.php (limited to 'tests/phpunit/includes/password/PasswordTest.php') diff --git a/tests/phpunit/includes/password/PasswordTest.php b/tests/phpunit/includes/password/PasswordTest.php new file mode 100644 index 00000000..5ad8aca6 --- /dev/null +++ b/tests/phpunit/includes/password/PasswordTest.php @@ -0,0 +1,39 @@ +newFromCiphertext( null ); + $invalid2 = User::getPasswordFactory()->newFromCiphertext( null ); + + $this->assertFalse( $invalid1->equals( $invalid2 ) ); + } + + public function testInvalidPlaintext() { + $invalid = User::getPasswordFactory()->newFromPlaintext( null ); + + $this->assertInstanceOf( 'InvalidPassword', $invalid ); + } +} -- cgit v1.2.3-54-g00ecf