mirror of
https://github.com/QRouland/UTPass.git
synced 2025-02-11 23:17:15 +00:00
14 lines
329 B
QML
14 lines
329 B
QML
|
import QtQuick 2.9
|
||
|
import QtTest 1.2
|
||
|
import TestsUtils 1.0
|
||
|
import Pass 1.0
|
||
|
|
||
|
TestCase {
|
||
|
function init() {
|
||
|
Pass.initialize(null);
|
||
|
Pass.gpg_home = TestsUtils.getTempPath();
|
||
|
Pass.password_store = TestsUtils.getTempPath();
|
||
|
Pass.passphrase_provider = TestsUtils.getTestPassphraseProvider();
|
||
|
}
|
||
|
}
|