We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8b71f3 commit c55c8aaCopy full SHA for c55c8aa
tests/Unit/Models/Fields/test_libidReference.py
@@ -15,3 +15,16 @@ def test_str():
15
"#2.0#0#C:\\Windows\\System32\\stdole2.tlb#OLE Automation")
16
assert str(libidRef) == expected
17
assert len(libidRef) == 94
18
+
19
+def test_posix():
20
+ guid = uuid.UUID('0002043000000000C000000000000046')
21
+ libidRef = LibidReference(
22
+ guid,
23
+ "2.0",
24
+ "0",
25
+ "//usr/bin/stdole2.tlb",
26
+ "OLE Automation"
27
+ )
28
+ expected = ("*\\H{00020430-0000-0000-C000-000000000046}"
29
+ "#2.0#0#//usr/bin/stdole2.tlb#OLE Automation")
30
+ assert str(libidRef) == expected
0 commit comments