diff options
| -rw-r--r-- | meta/lib/oeqa/runtime/cases/gi.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/gi.py b/meta/lib/oeqa/runtime/cases/gi.py new file mode 100644 index 0000000000..19073e52cb --- /dev/null +++ b/meta/lib/oeqa/runtime/cases/gi.py | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | import os | ||
| 2 | |||
| 3 | from oeqa.runtime.case import OERuntimeTestCase | ||
| 4 | from oeqa.core.decorator.depends import OETestDepends | ||
| 5 | from oeqa.runtime.decorator.package import OEHasPackage | ||
| 6 | |||
| 7 | class GObjectIntrospectionTest(OERuntimeTestCase): | ||
| 8 | |||
| 9 | @OETestDepends(["ssh.SSHTest.test_ssh"]) | ||
| 10 | @OEHasPackage(["python3-pygobject"]) | ||
| 11 | def test_python(self): | ||
| 12 | script = """from gi.repository import GObject; print(GObject.markup_escape_text("<testing&testing>"))""" | ||
| 13 | status, output = self.target.run("python3 -c '%s'" % script) | ||
| 14 | self.assertEqual(status, 0, msg="Python failed (%s)" % (output)) | ||
| 15 | self.assertEqual(output, "<testing&testing>", msg="Unexpected output (%s)" % output) | ||
