mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 03:28:19 +00:00
13 lines
182 B
C++
13 lines
182 B
C++
|
#include <gtest/gtest.h>
|
||
|
|
||
|
#include <base/system.h>
|
||
|
#include <game/version.h>
|
||
|
|
||
|
TEST(GitRevision, ExistsOrNull)
|
||
|
{
|
||
|
if(GIT_SHORTREV_HASH)
|
||
|
{
|
||
|
ASSERT_STRNE(GIT_SHORTREV_HASH, "");
|
||
|
}
|
||
|
}
|