1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-02-12 07:27:15 +00:00
UTPass/tests/units/pass/PassTestCase.qml

20 lines
465 B
QML
Raw Normal View History

import Pass 1.0
2025-01-29 16:42:37 +01:00
import QtQuick 2.9
import QtTest 1.2
import TestsUtils 1.0
TestCase {
property string password_store
property string gpg_home
2025-01-29 16:42:37 +01:00
function init() {
Pass.initialize(null);
gpg_home = TestsUtils.getTempPath();
Pass.gpg_home = gpg_home;
password_store = TestsUtils.getTempPath();
Pass.password_store = password_store;
2025-01-29 16:42:37 +01:00
Pass.passphrase_provider = TestsUtils.getTestPassphraseProvider();
}
2025-01-29 16:42:37 +01:00
}