1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
import sys
import pytest
@pytest.mark.skipif(sys.platform != "darwin", reason="macOS specific test")
def test_open_macOS(open_command, tmp_path):
"""On macOS, open invokes `open`"""
open_command(app=open_command.apps["first"])
open_command.tools.subprocess.Popen.assert_called_once_with(
[
"open",
tmp_path
/ "base_path"
/ "build"
/ "first"
/ "tester"
/ "dummy"
/ "first.project",
]
)
@pytest.mark.skipif(sys.platform != "linux", reason="Linux specific test")
def test_open_linux(open_command, tmp_path):
"""On linux, open invokes `xdg-open`"""
open_command(app=open_command.apps["first"])
open_command.tools.subprocess.Popen.assert_called_once_with(
[
"xdg-open",
tmp_path
/ "base_path"
/ "build"
/ "first"
/ "tester"
/ "dummy"
/ "first.project",
]
)
@pytest.mark.skipif(sys.platform != "win32", reason="Windows specific test")
def test_open_windows(open_command, tmp_path):
"""On Windows, open invokes `startfile`"""
open_command(app=open_command.apps["first"])
open_command.tools.os.startfile.assert_called_once_with(
tmp_path
/ "base_path"
/ "build"
/ "first"
/ "tester"
/ "dummy"
/ "first.project"
)
|