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
259 B
Plaintext

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