This repository has been archived on 2020-05-10. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon-cpp/src/tests/test_01_get_instance.cpp

21 lines
363 B
C++
Raw Normal View History

/* This file is part of mastodon-cpp.
*/
#include <iostream>
#include "../mastodon-cpp.hpp"
int main(int argc, char *argv[])
{
Mastodon::API test("soc.ialis.me", "");
std::string answer = test.get(Mastodon::API::v1::instance);
if (answer.substr(7, 14) == "\"soc.ialis.me\"")
{
return 0;
}
else
{
return 1;
}
}