mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
b98a53df92
git-svn-id: http://svn.pyinstaller.org/trunk@2 8dd32b29-ccff-0310-8a9a-9233e24343b1
19 lines
460 B
Python
19 lines
460 B
Python
print "test2 - version, icon, no zlib (should run same as test1)"
|
|
e1 = 'a_func from pkg2.a'
|
|
e2 = 'b_func from pkg2.b (pkg2/extra/b.py)'
|
|
e3 = 'notamodule from pkg2.__init__'
|
|
from pkg1 import *
|
|
t1 = a.a_func()
|
|
if t1 != e1:
|
|
print "expected:", e1
|
|
print " got:", t1
|
|
t2 = b.b_func()
|
|
if t2 != e2:
|
|
print "expected:", e2
|
|
print " got:", t2
|
|
t3 = notamodule()
|
|
if t3 != e3:
|
|
print "expected:", e3
|
|
print " got:", t3
|
|
print "test2 complete"
|