notcurses/tests/input.cpp

24 lines
532 B
C++
Raw Normal View History

2019-12-23 07:47:34 +00:00
#include "main.h"
TEST_CASE("NotcursesInput") {
if(getenv("TERM") == nullptr){
return;
2019-12-23 07:47:34 +00:00
}
if(!enforce_utf8()){
return;
}
notcurses_options nopts{};
nopts.inhibit_alternate_screen = true;
2019-12-28 23:37:44 +00:00
nopts.suppress_banner = true;
FILE* outfp_ = fopen("/dev/tty", "wb");
REQUIRE(outfp_);
struct notcurses* nc_ = notcurses_init(&nopts, outfp_);
REQUIRE(nc_);
2019-12-23 07:47:34 +00:00
REQUIRE(0 == notcurses_mouse_enable(nc_));
CHECK(0 == notcurses_mouse_disable(nc_));
2019-12-23 07:47:34 +00:00
CHECK(0 == notcurses_stop(nc_));
CHECK(0 == fclose(outfp_));
2019-12-23 07:47:34 +00:00
}