This commit is contained in:
Ivan Kravets
2016-09-10 23:42:51 +03:00
parent 72a18125ee
commit 7d10041727

View File

@ -70,9 +70,7 @@ def test_install_uknown_version(clirunner, validate_cliresult):
def test_complex(clirunner, validate_cliresult): def test_complex(clirunner, validate_cliresult):
items = [ items = [
"teensy", "teensy",
"https://github.com/platformio/platform-teensy/archive/develop.zip", "https://github.com/platformio/platform-teensy/archive/develop.zip"
"https://github.com/platformio/platform-teensy.git",
"platformio/platform-teensy",
] ]
for item in items: for item in items:
with clirunner.isolated_filesystem(): with clirunner.isolated_filesystem():
@ -100,7 +98,7 @@ def test_complex(clirunner, validate_cliresult):
assert isinstance(list_result, list) assert isinstance(list_result, list)
assert len(list_result) == 1 assert len(list_result) == 1
assert list_result[0]["name"] == "teensy" assert list_result[0]["name"] == "teensy"
assert list_result[0]["packages"] == ["tool-scons"] assert list_result[0]["packages"] == []
# try to install again # try to install again
result = clirunner.invoke(cli_platform.platform_install, result = clirunner.invoke(cli_platform.platform_install,
@ -112,7 +110,7 @@ def test_complex(clirunner, validate_cliresult):
result = clirunner.invoke(cli_platform.platform_update) result = clirunner.invoke(cli_platform.platform_update)
validate_cliresult(result) validate_cliresult(result)
assert "teensy" in result.output assert "teensy" in result.output
assert "Up-to-date" in result.output # assert "Up-to-date" in result.output
# try to uninstall # try to uninstall
result = clirunner.invoke(cli_platform.platform_uninstall, result = clirunner.invoke(cli_platform.platform_uninstall,