mirror of
https://github.com/pestphp/pest.git
synced 2026-03-12 10:47:25 +01:00
Use Expectation API
This commit is contained in:
@ -392,3 +392,4 @@
|
|||||||
✓ depends run test only once
|
✓ depends run test only once
|
||||||
|
|
||||||
Tests: 7 skipped, 231 passed
|
Tests: 7 skipped, 231 passed
|
||||||
|
|
||||||
@ -8,6 +8,6 @@ it('show the names of named datasets in their description', function () {
|
|||||||
'two' => [[2]],
|
'two' => [[2]],
|
||||||
]));
|
]));
|
||||||
|
|
||||||
$this->assertSame('test description with data set "one" (1)', $descriptions[0]);
|
expect($descriptions[0])->toBe('test description with data set "one" (1)');
|
||||||
$this->assertSame('test description with data set "two" (array(2))', $descriptions[1]);
|
expect($descriptions[1])->toBe('test description with data set "two" (array(2))');
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user