mirror of
https://github.com/shufflingpixels/php-io.git
synced 2026-06-16 05:04:59 +02:00
9 lines
249 B
PHP
9 lines
249 B
PHP
<?php
|
|
|
|
use Shufflingpixels\IO\SeekMode;
|
|
|
|
it('maps to native seek constants', function () {
|
|
expect(SeekMode::SET->value)->toBe(SEEK_SET)
|
|
->and(SeekMode::CUR->value)->toBe(SEEK_CUR)
|
|
->and(SeekMode::END->value)->toBe(SEEK_END);
|
|
});
|