-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: fix old multiformats-config pkg dependency
- Loading branch information
Showing
5 changed files
with
33 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +0,0 @@ | ||
pkg_url: "xx" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Copyright (c) 2021, University of Luxembourg / DHARPA project | ||
# Copyright (c) 2021, Markus Binsteiner | ||
# | ||
# Mozilla Public License, version 2.0 (see LICENSE or https://www.mozilla.org/en-US/MPL/2.0/) | ||
from click.testing import CliRunner | ||
|
||
from kiara.interfaces.cli import cli | ||
|
||
|
||
def test_context_subcommand(): | ||
|
||
runner = CliRunner() | ||
result = runner.invoke(cli, "context") | ||
assert result.exit_code == 0 | ||
assert "context related sub-commands" in result.stdout | ||
|
||
|
||
# def test_delete_context_subcommand(): | ||
# | ||
# runner = CliRunner() | ||
# result = runner.invoke(cli, "module list") | ||
# | ||
# assert result.exit_code == 0 | ||
# assert "logic.or" in result.stdout | ||
# assert "logic.xor" not in result.stdout |