1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 13:21:16 +01:00
amp/test/FutureTest.php

16 lines
304 B
PHP
Raw Normal View History

2014-09-22 16:47:48 -04:00
<?php
2014-09-22 22:38:32 -04:00
namespace Amp\Test;
2014-09-22 16:47:48 -04:00
2014-09-22 22:38:32 -04:00
use Amp\Future;
2014-09-22 16:47:48 -04:00
2015-03-16 15:04:01 -04:00
class FutureTest extends PromisorTest {
protected function getPromisor() {
return new Future;
}
2014-09-22 16:47:48 -04:00
public function testPromiseReturnsSelf() {
$promisor = new Future;
$this->assertSame($promisor, $promisor->promise());
2014-09-22 16:47:48 -04:00
}
}