Esempio n. 1
0
def test_windows_get_args_for_reloading(monkeypatch, tmpdir):
    test_py_exe = r'C:\Users\test\AppData\Local\Programs\Python\Python36\python.exe'
    monkeypatch.setattr(os, 'name', 'nt')
    monkeypatch.setattr(sys, 'executable', test_py_exe)
    test_exe = tmpdir.mkdir('test').join('test.exe')
    monkeypatch.setattr(sys, 'argv', [test_exe.strpath, 'run'])
    rv = _reloader._get_args_for_reloading()
    assert rv == [test_exe.strpath, 'run']
Esempio n. 2
0
def test_windows_get_args_for_reloading(monkeypatch, tmpdir):
    test_py_exe = r"C:\Users\test\AppData\Local\Programs\Python\Python36\python.exe"
    monkeypatch.setattr(os, "name", "nt")
    monkeypatch.setattr(sys, "executable", test_py_exe)
    test_exe = tmpdir.mkdir("test").join("test.exe")
    monkeypatch.setattr(sys, "argv", [test_exe.strpath, "run"])
    rv = _reloader._get_args_for_reloading()
    assert rv == [test_exe.strpath, "run"]
Esempio n. 3
0
def test_windows_get_args_for_reloading(monkeypatch, tmp_path):
    argv = [str(tmp_path / "test.exe"), "run"]
    monkeypatch.setattr("sys.executable", str(tmp_path / "python.exe"))
    monkeypatch.setattr("sys.argv", argv)
    monkeypatch.setattr("__main__.__package__", None)
    monkeypatch.setattr("os.name", "nt")
    rv = _get_args_for_reloading()
    assert rv == argv
Esempio n. 4
0
def test_windows_get_args_for_reloading(monkeypatch, tmpdir):
    test_py_exe = r'C:\Users\test\AppData\Local\Programs\Python\Python36\python.exe'
    monkeypatch.setattr(os, 'name', 'nt')
    monkeypatch.setattr(sys, 'executable', test_py_exe)
    test_exe = tmpdir.mkdir('test').join('test.exe')
    monkeypatch.setattr(sys, 'argv', [test_exe.strpath, 'run'])
    rv = _reloader._get_args_for_reloading()
    assert rv == [test_exe.strpath, 'run']
Esempio n. 5
0
def test_windows_get_args_for_reloading(monkeypatch, tmpdir):
    test_py_exe = r"C:\Users\test\AppData\Local\Programs\Python\Python36\python.exe"
    monkeypatch.setattr(os, "name", "nt")
    monkeypatch.setattr(sys, "executable", test_py_exe)
    test_exe = tmpdir.mkdir("test").join("test.exe")
    monkeypatch.setattr(sys, "argv", [test_exe.strpath, "run"])
    rv = _reloader._get_args_for_reloading()
    assert rv == [test_exe.strpath, "run"]