summaryrefslogtreecommitdiffstats
path: root/tests/auto/installer/scriptengine
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/installer/scriptengine')
-rw-r--r--tests/auto/installer/scriptengine/data/component1.qs6
-rw-r--r--tests/auto/installer/scriptengine/tst_scriptengine.cpp5
2 files changed, 0 insertions, 11 deletions
diff --git a/tests/auto/installer/scriptengine/data/component1.qs b/tests/auto/installer/scriptengine/data/component1.qs
index af81f5747..60f51bb02 100644
--- a/tests/auto/installer/scriptengine/data/component1.qs
+++ b/tests/auto/installer/scriptengine/data/component1.qs
@@ -35,12 +35,6 @@ Component.prototype.createOperations = function()
component.createOperations();
}
-Component.prototype.isAutoDependOn = function()
-{
- print("isAutoDependOn - OK");
- return false;
-}
-
Component.prototype.isDefault = function()
{
print("isDefault - OK");
diff --git a/tests/auto/installer/scriptengine/tst_scriptengine.cpp b/tests/auto/installer/scriptengine/tst_scriptengine.cpp
index d7b7aa4d0..de5b32076 100644
--- a/tests/auto/installer/scriptengine/tst_scriptengine.cpp
+++ b/tests/auto/installer/scriptengine/tst_scriptengine.cpp
@@ -114,7 +114,6 @@ private slots:
// (it calls clearAllComponentLists which calls qDeleteAll(m_rootComponents);)
m_core.appendRootComponent(m_component);
- m_component->setValue("AutoDependOn", "Script");
m_component->setValue("Default", "Script");
m_component->setValue(scName, "component.test.name");
@@ -256,10 +255,6 @@ private slots:
setExpectedScriptOutput("\"createOperations - OK\"");
m_component->createOperations();
- setExpectedScriptOutput("\"isAutoDependOn - OK\"");
- bool returnIsAutoDependOn = m_component->isAutoDependOn(QSet<QString>());
- QCOMPARE(returnIsAutoDependOn, false);
-
setExpectedScriptOutput("\"isDefault - OK\"");
bool returnIsDefault = m_component->isDefault();
QCOMPARE(returnIsDefault, false);