more import-error detection tests

This commit is contained in:
Dave Halter
2014-05-11 15:33:53 +02:00
parent 7b525285bd
commit 284a64a79a

View File

@@ -3,3 +3,16 @@
import not_existing
import os
from os.path import abspath
#! import-error
from os.path import not_existing
from datetime import date
date.today
#! attribute-error
date.not_existing_attribute
#! import-error
from datetime.date import today