Files
bandit/examples/mktemp.py
Jamie Finnigan 613ea2dc51 Support dynamic loading of tests
This adds config file handling, module import, and function addition
to test set.
2014-07-17 11:23:57 -07:00

11 lines
152 B
Python

from tempfile import mktemp
import tempfile.mktemp as mt
import tempfile as tmp
foo = 'hi'
mktemp(foo)
tempfile.mktemp('foo')
mt(foo)
tmp.mktemp(foo)