mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
6eed3155e6
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>
13 lines
194 B
C++
13 lines
194 B
C++
#ifndef TESTGITSTORAGE_H
|
|
#define TESTGITSTORAGE_H
|
|
|
|
#include <QTest>
|
|
|
|
class TestGitStorage : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void testGitStorageLocal();
|
|
};
|
|
|
|
#endif // TESTGITSTORAGE_H
|