You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
255 B
C++

#include <doctest/doctest.h>
#include <weechat/weechat-plugin.h>
#include "../plugin.hh"
TEST_CASE("weechat")
{
std::string current("20220312-01");
SUBCASE("plugin api match")
{
CHECK(current == WEECHAT_PLUGIN_API_VERSION);
}
}