From e22788697aa6c4765c86e0d569cbe0b0137efeb5 Mon Sep 17 00:00:00 2001 From: graham.gower@gmail.com Date: Thu, 27 Oct 2011 00:53:01 -0400 Subject: Add tests for issue 84 and issue 85. git-svn-id: http://opkg.googlecode.com/svn/trunk@633 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- (limited to 'tests/regress/issue85.py') diff --git a/tests/regress/issue85.py b/tests/regress/issue85.py new file mode 100755 index 0000000..3250075 --- /dev/null +++ b/tests/regress/issue85.py @@ -0,0 +1,29 @@ +#!/usr/bin/python3 + +import opk, cfg, opkgcl + +def cleanup(): + opkgcl.remove("a") + opkgcl.remove("b") + opkgcl.remove('c') + +opk.regress_init() + +o = opk.OpkGroup() +o.add(Package="a", Provides="v") +o.add(Package="b", Provides="v", Depends="b_nonexistant") +o.add(Package="c", Depends="v") + +o.write_opk() +o.write_list() + +opkgcl.update() + +# install ``c'' from repository +opkgcl.install("c") +if not opkgcl.is_installed("c"): + print(__file__, ": package ``c'' not installed.") + cleanup() + exit(False) + +cleanup() -- cgit v0.9.1