22 lines
349 B
PHP
Executable File
22 lines
349 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
include dirname(__FILE__, 5) . '/test/lib/init.php';
|
|
include dirname(__FILE__, 2) . '/gitea.class.php';
|
|
su('admin');
|
|
|
|
/**
|
|
|
|
title=测试giteaModel->gitList();
|
|
cid=1
|
|
pid=1
|
|
|
|
获取Gitea列表 >> 4
|
|
|
|
*/
|
|
|
|
$gitea = new giteaTest();
|
|
|
|
$orderBy = 'id_desc';
|
|
r($gitea->getList($orderBy)) && p('id') && e('4'); // 获取Gitea列表
|
|
|