import os
import shutil
+import subprocess
import sys
from tempfile import mkdtemp
create_files(['test1', 'test2'])
assert_files_exist(['test1', 'test2'])
os.utime('test2', (0, 0))
- assert os.system(
- "%s %s --older 100 ." % (sys.executable, test_prog_path)) == 0
+ assert subprocess.call(
+ [sys.executable, test_prog_path, "--older", "100", "."]) == 0
assert_files_exist('test1')
assert_files_not_exist('test2')
test4 = os.path.join('subdir', 'test4')
assert_files_exist([test3, test4])
os.utime(test4, (0, 0))
- assert os.system(
- "%s %s --older 100 ." % (sys.executable, test_prog_path)) == 0
+ assert subprocess.call(
+ [sys.executable, test_prog_path, "--older", "100", "."]) == 0
assert_files_exist(test3)
assert_files_not_exist(test4)
assert_files_exist([test3, test4])
os.utime(test3, (0, 0))
os.utime(test4, (0, 0))
- assert os.system(
- "%s %s --older 100 ." % (sys.executable, test_prog_path)) == 0
+ assert subprocess.call(
+ [sys.executable, test_prog_path, "--older", "100", "."]) == 0
assert_files_exist('subdir')
assert_files_not_exist([test3, test4])
- assert os.system(
- "%s %s -e --older 100 ." % (sys.executable, test_prog_path)) == 0
+ assert subprocess.call(
+ [sys.executable, test_prog_path, "-e", "--older", "100", "."]) == 0
assert_files_not_exist('subdir')