2018-03-01 15:50:29 +00:00
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
|
|
|
#include <base/system.h>
|
|
|
|
#include <game/version.h>
|
|
|
|
|
|
|
|
TEST(GitRevision, ExistsOrNull)
|
|
|
|
{
|
|
|
|
if(GIT_SHORTREV_HASH)
|
|
|
|
{
|
2019-03-12 01:06:54 +00:00
|
|
|
EXPECT_STRNE(GIT_SHORTREV_HASH, "");
|
2018-03-01 15:50:29 +00:00
|
|
|
}
|
|
|
|
}
|