Skip to content

Commit

Permalink
Leave only simple set and clear test
Browse files Browse the repository at this point in the history
  • Loading branch information
bacecek committed Apr 8, 2024
1 parent 790af29 commit 90abcbd
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions tests/adbe_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,16 +467,9 @@ def test_location():

def test_debug_app_set():
_assert_success('debug-app set %s' % _TEST_APP_ID)


def test_debug_app_clear():
_assert_success('debug-app clear')


def test_debug_app_set_fail():
_assert_fail('debug-app set %s' % _TEST_NON_EXISTANT_APP_ID)


def _assert_fail(sub_cmd):
exit_code, stdout_data, stderr_data = _execute(sub_cmd)
assert exit_code == 1, 'Command "%s" failed with stdout: "%s" and stderr: "%s"' %(sub_cmd, stdout_data, stderr_data)
Expand Down Expand Up @@ -568,7 +561,8 @@ def main():
test_location()
test_debug_app_set()
test_debug_app_clear()
test_debug_app_set_fail()
test_debug_app_set_wait()
test_debug_app_set_persistant()
# TODO: Add a test for screen record after figuring out how to perform ^C while it is running.


Expand Down

0 comments on commit 90abcbd

Please sign in to comment.