28 lines
720 B
PHP
Executable File
28 lines
720 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/**
|
|
|
|
title=svnModel->run();
|
|
timeout=0
|
|
cid=1
|
|
|
|
- 更新svn提交信息到禅道,检查第二条记录是否正确
|
|
- 属性commit @2
|
|
- 属性comment @+ Add secondary file.
|
|
- 属性committer @admin
|
|
|
|
*/
|
|
|
|
include dirname(__FILE__, 5) . '/test/lib/init.php';
|
|
include dirname(__FILE__, 2) . '/lib/svn.unittest.class.php';
|
|
|
|
zenData('job')->gen(0);
|
|
zenData('repo')->loadYaml('repo')->gen(1);
|
|
zenData('repofiles')->loadYaml('repofiles')->gen(1);
|
|
zenData('repohistory')->loadYaml('repohistory')->gen(1);
|
|
su('admin');
|
|
|
|
$svn = new svnTest();
|
|
|
|
r($svn->runTest()) && p('commit,comment,committer') && e('2,+ Add secondary file.,admin'); // 更新svn提交信息到禅道,检查第二条记录是否正确
|