1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-05 19:20:18 +00:00
pixelfed/tests/Unit/SnowflakeTest.php

17 lines
284 B
PHP
Raw Normal View History

2021-02-12 22:50:46 -07:00
<?php
namespace Tests\Unit;
use Tests\TestCase;
2021-02-16 22:59:40 -07:00
class SnowflakeTest extends TestCase
2021-02-12 22:50:46 -07:00
{
/** @test */
public function snowflakeTest()
{
2022-12-21 22:21:07 +01:00
$expected = 266077397319815168;
$actual = 266077397319815168;
$this->assertEquals($expected, $actual);
2021-02-12 22:50:46 -07:00
}
}