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 / reset.c (2a90444624b1d480a85f3f74c9010b61bccb9a0c) (827B) (mode 100644) [raw]
#include <stic.h>

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

extern int fusehome_handler_calls;
extern const char *value;

TEST(reset_of_str_option_not_differ_no_callback)
{
	int res;

	fusehome_handler_calls = 0;
	res = vle_opts_set("fusehome&", OPT_GLOBAL);
	assert_int_equal(0, res);
	assert_int_equal(0, fusehome_handler_calls);
}

TEST(reset_of_str_option_differ_callback)
{
	int res;

	res = vle_opts_set("fusehome='abc'", OPT_GLOBAL);
	assert_int_equal(0, res);
	assert_string_equal("abc", value);

	fusehome_handler_calls = 0;
	res = vle_opts_set("fusehome&", OPT_GLOBAL);
	assert_int_equal(0, res);
	assert_int_equal(1, fusehome_handler_calls);
	assert_string_equal("fusehome-default", value);
}

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