xaizek / rocketgit (License: AGPLv3+) (since 2018-12-09)
Light and fast Git hosting solution suitable to serve both as a hub or as a personal code storage with its tickets, pull requests, API and much more.
Commit e1145815a78faa7f24e899750547ba893a05d173

fix a unit test
Author: Catalin(ux) M. BOIE
Author date (UTC): 2016-09-21 16:56
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2016-09-21 16:56
Parent(s): 8d9766033596179b235d6756a0af551a503278f2
Signing key:
Tree: 7c670e2eabed28838c0f2ef85bf398edae93d481
File Lines added Lines deleted
tests/user.php 1 1
File tests/user.php changed (mode: 100644) (index 483b905..d8f911c)
... ... rg_sql_free_result($res);
39 39
40 40 // Test if empty uid/user/email returns error // Test if empty uid/user/email returns error
41 41 $_ui = rg_user_info($db, 0, "", ""); $_ui = rg_user_info($db, 0, "", "");
42 if ($_ui['ok'] == 1) {
42 if (($_ui['ok'] != 1) || ($_ui['exists'] !== 0)) {
43 43 rg_log("Seems that invalid user does not return error!"); rg_log("Seems that invalid user does not return error!");
44 44 exit(1); exit(1);
45 45 } }
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master