1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-01-03 13:44:13 +00:00
pixelfed/tests/Unit/SnowflakeTest.php
2022-12-21 22:21:07 +01:00

16 lines
284 B
PHP

<?php
namespace Tests\Unit;
use Tests\TestCase;
class SnowflakeTest extends TestCase
{
/** @test */
public function snowflakeTest()
{
$expected = 266077397319815168;
$actual = 266077397319815168;
$this->assertEquals($expected, $actual);
}
}