Add simple test for git storage

This just makes sure that writing data to git storage and reading it back
gives you the same result. Without the fixed generation of initial dive
site UUIDs this fails.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-08-24 09:32:27 -07:00
parent eb205c1b09
commit 6eed3155e6
3 changed files with 51 additions and 0 deletions

13
tests/testgitstorage.h Normal file
View file

@ -0,0 +1,13 @@
#ifndef TESTGITSTORAGE_H
#define TESTGITSTORAGE_H
#include <QTest>
class TestGitStorage : public QObject
{
Q_OBJECT
private slots:
void testGitStorageLocal();
};
#endif // TESTGITSTORAGE_H