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 / options / with_spaces.c (991e66e7d07678f358ad03f038b6db7d73fddfb8) (1,564B) (mode 100644) [raw]
#include <stic.h>

#include "../../src/engine/options.h"

extern int fastrun;
extern int tabstop;

TEST(bang)
{
	optval_t val = { .bool_val = 0 };
	fastrun = 0;
	vle_opts_assign("fastrun", val, OPT_GLOBAL);

	assert_true(vle_opts_set("fastrun!", OPT_GLOBAL) == 0);
	assert_true(fastrun);

	assert_true(vle_opts_set("fastrun !", OPT_GLOBAL) == 0);
	assert_false(fastrun);

	assert_false(vle_opts_set("fastrun !f", OPT_GLOBAL) == 0);
}

TEST(qmark)
{
	optval_t val = { .bool_val = 0 };
	fastrun = 8;
	vle_opts_assign("fastrun", val, OPT_GLOBAL);

	assert_true(vle_opts_set("fastrun?", OPT_GLOBAL) == 0);
	assert_true(vle_opts_set("fastrun  ?", OPT_GLOBAL) == 0);
	assert_false(vle_opts_set("fastrun  !f", OPT_GLOBAL) == 0);
}

TEST(ampersand)
{
	optval_t val = { .bool_val = 1 };
	fastrun = 1;
	vle_opts_assign("fastrun", val, OPT_GLOBAL);

	assert_true(vle_opts_set("fastrun &", OPT_GLOBAL) == 0);
	assert_false(fastrun);
}

TEST(assignment)
{
	optval_t val = { .int_val = 8 };
	tabstop = 4;
	vle_opts_assign("tabstop", val, OPT_GLOBAL);
	assert_int_equal(4, tabstop);

	assert_true(vle_opts_set("tabstop =5", OPT_GLOBAL) == 0);
	assert_int_equal(5, tabstop);

	assert_true(vle_opts_set("tabstop   :8", OPT_GLOBAL) == 0);
	assert_int_equal(8, tabstop);

	assert_true(vle_opts_set("tabstop +=2", OPT_GLOBAL) == 0);
	assert_int_equal(10, tabstop);

	assert_true(vle_opts_set("tabstop -=1", OPT_GLOBAL) == 0);
	assert_int_equal(9, tabstop);
}

/* 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