diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-11-28 11:38:22 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-11-28 11:38:22 +0100 |
commit | 9cfae2ed448dd3367a5e630b95feb5f53d46553c (patch) | |
tree | 725115533e2f2f3430e8f78259cbf530ca900f26 /tests/core | |
parent | 154628daf46d2ace4bf90e05053696160b2b00c3 (diff) | |
download | nextcloud-server-9cfae2ed448dd3367a5e630b95feb5f53d46553c.tar.gz nextcloud-server-9cfae2ed448dd3367a5e630b95feb5f53d46553c.zip |
Skip lostcontroller sending email test on windows
Diffstat (limited to 'tests/core')
-rw-r--r-- | tests/core/lostpassword/controller/lostcontrollertest.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/core/lostpassword/controller/lostcontrollertest.php b/tests/core/lostpassword/controller/lostcontrollertest.php index 5da9e5ce48d..2f2105b85e8 100644 --- a/tests/core/lostpassword/controller/lostcontrollertest.php +++ b/tests/core/lostpassword/controller/lostcontrollertest.php @@ -102,6 +102,11 @@ class LostControllerTest extends \PHPUnit_Framework_TestCase { } public function testEmailSuccessful() { + if (\OC_Util::runningOnWindows()) { + // FIXME after OC_Mail refactor + $this->markTestSkipped('[Windows] sendmail is not supported on windows'); + } + $randomToken = $this->container['SecureRandom']; $this->container['SecureRandom'] ->expects($this->once()) |