aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp')
-rw-r--r--sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp b/sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp
index a7e88e437..10bf35d59 100644
--- a/sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp
+++ b/sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp
@@ -77,6 +77,7 @@ void TestTypeRevision::testVersion_data()
QTest::newRow("none") << QString() << 2;
QTest::newRow("1.0") << QString::fromLatin1("1.0") << 1; // Bar20 excluded
QTest::newRow("2.0") << QString::fromLatin1("2.0") << 2;
+ QTest::newRow("3.0") << QString::fromLatin1("3.0") << 1; // Bar excluded by "until"
}
void TestTypeRevision::testVersion()
@@ -90,7 +91,7 @@ class Bar20 {};
)CPP";
const char xmlCode[] = R"XML(
<typesystem package="Foo">
- <value-type name="Bar"/>
+ <value-type name="Bar" until="2.0"/>
<value-type name="Bar20" since="2.0"/>
</typesystem>
)XML";