xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
<root> / tests / cmds / builtin.c (7defa23c883075ea466c2558bf4a02b60fd71fe7) (843B) (mode 100644) [raw]
#include <stic.h>

#include <stddef.h> /* NULL */
#include <stdlib.h>
#include <string.h>

#include "../../src/engine/cmds.h"
#include "../../src/engine/completion.h"
#include "../../src/cmd_core.h"

extern struct cmds_conf cmds_conf;

SETUP()
{
	vle_cmds_reset();
	cmds_init();
}

TEST(empty_line_completion)
{
	char *buf;

	vle_compl_reset();
	assert_int_equal(0, vle_cmds_complete("", NULL));

	buf = vle_compl_next();
	assert_string_equal("!", buf);
	free(buf);

	buf = vle_compl_next();
	assert_string_equal("alink", buf);
	free(buf);
}

TEST(set)
{
	char *buf;

	vle_compl_reset();
	assert_int_equal(0, vle_cmds_complete("se", NULL));

	buf = vle_compl_next();
	assert_string_equal("select", buf);
	free(buf);
}

/* vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : */
/* vim: set cinoptions+=t0 filetype=c : */
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/vifm

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

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