Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
9.2.2023: Due to updates GitLab will be unavailable for some minutes between 9:00 and 11:00.
Open sidebar
badw-it
DHParser
Commits
990282ed
Commit
990282ed
authored
Nov 02, 2017
by
di68kap
Browse files
- test_toolkit.py: 'tmp' directory is not assumed to exist already
parent
2b5bdc63
Changes
1
Show whitespace changes
Inline
Side-by-side
test/test_toolkit.py
View file @
990282ed
...
...
@@ -30,16 +30,20 @@ from DHParser.toolkit import load_if_file, logging, log_dir, is_logging, re
class
TestLoggingAndLoading
:
filename
=
"tmp/test.py"
if
os
.
path
.
isdir
(
'tmp'
)
else
"test/tmp/test.py"
filename
=
"test/tmp/test.py"
if
os
.
path
.
isdir
(
'test/tmp'
)
else
"tmp/test.py"
dirname
=
os
.
path
.
dirname
(
filename
)
code1
=
"x = 46"
code2
=
"def f():
\n
return 46"
def
setup
(
self
):
if
not
os
.
path
.
exists
(
self
.
dirname
):
os
.
mkdir
(
self
.
dirname
)
with
open
(
self
.
filename
,
'w'
)
as
f
:
f
.
write
(
self
.
code2
)
def
teardown
(
self
):
os
.
remove
(
self
.
filename
)
os
.
rmdir
(
self
.
dirname
)
if
os
.
path
.
exists
(
"TESTLOGS"
):
os
.
remove
(
"TESTLOGS/info.txt"
)
os
.
rmdir
(
"TESTLOGS"
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment