Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
PIM Data Exporter
Commits
3d4f22d9
Commit
3d4f22d9
authored
May 25, 2020
by
Laurent Montel
Browse files
Fix import repository
parent
b2a82772
Changes
1
Hide whitespace changes
Inline
Side-by-side
core/autotests/akregator/importakregatorjobinterfacetest.cpp
View file @
3d4f22d9
...
...
@@ -59,9 +59,9 @@ void ImportAkregatorJobInterfaceTest::importAkegator_data()
QTest
::
addColumn
<
Utils
::
StoredTypes
>
(
"options"
);
const
QByteArray
pathConfig
(
QByteArray
(
PIMDATAEXPORTER_DIR
)
+
"/import/"
);
Utils
::
StoredTypes
options
=
{
Utils
::
StoredType
::
Config
};
QTest
::
newRow
(
"test1"
)
<<
QString
::
fromLatin1
(
pathConfig
)
<<
QStringLiteral
(
"/
test1
/"
)
<<
options
;
QTest
::
newRow
(
"test1"
)
<<
QString
::
fromLatin1
(
pathConfig
)
<<
QStringLiteral
(
"/
akregatorconfig
/"
)
<<
options
;
options
=
{
Utils
::
StoredType
::
Config
|
Utils
::
StoredType
::
Resources
};
QTest
::
newRow
(
"test1resource"
)
<<
QString
::
fromLatin1
(
pathConfig
)
<<
QStringLiteral
(
"/
test1
resource/"
)
<<
options
;
QTest
::
newRow
(
"test1resource"
)
<<
QString
::
fromLatin1
(
pathConfig
)
<<
QStringLiteral
(
"/
akregator
resource/"
)
<<
options
;
}
void
ImportAkregatorJobInterfaceTest
::
importAkegator
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment