<?php

use Tests\TestCase;

class UnitTest extends TestCase
{
    public function test_export_endpoint_works_for_logged_in_users()
    {
        $res = $this->post('/export', array(
            'token' => config('app.gitea_token'),
            'from_month' => '10',
            'from_year' => '2023',
            'to_month' => '12',
            'to_year' => '2023'
        ));

        $res->assertResponseOk();
        //dd($res);
    }
}