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
Plaintext

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