21 lines
436 B
PHP
21 lines
436 B
PHP
|
<?php
|
||
|
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class UnitTest extends TestCase
|
||
|
{
|
||
|
public function test_export_endpoint_works_for_logged_in_users()
|
||
|
{
|
||
|
$res = $this->post('/export', array(
|
||
|
'token' => getenv('GITEA_TOKEN'),
|
||
|
'from_month' => '10',
|
||
|
'from_year' => '2023',
|
||
|
'to_month' => '12',
|
||
|
'to_year' => '2023'
|
||
|
));
|
||
|
|
||
|
$res->assertResponseOk();
|
||
|
//dd($res);
|
||
|
}
|
||
|
}
|