summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/ConfirmEdit/tests/ReCaptchaNoCaptchaAuthenticationRequestTest.php
blob: fe3fe2e7c2f34881d49439edf3c0abc81b4d8f7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

use MediaWiki\Auth\AuthenticationRequestTestCase;

require_once __DIR__ . '/../ReCaptchaNoCaptcha/ReCaptchaNoCaptchaAuthenticationRequest.php';

class ReCaptchaNoCaptchaAuthenticationRequestTest extends AuthenticationRequestTestCase {
	protected function getInstance( array $args = [] ) {
		return new ReCaptchaNoCaptchaAuthenticationRequest();
	}

	public function provideLoadFromSubmission() {
		return [
			'no proof' => [ [], [], false ],
			'normal' => [ [], [ 'captchaWord' => 'abc' ], [ 'captchaWord' => 'abc' ] ],
		];
	}
}