-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Get implementations tests (under integration) ready to go
- Loading branch information
Showing
6 changed files
with
39 additions
and
16 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
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
10 changes: 5 additions & 5 deletions
10
tests/integration/tests/run-tests-implementations.bats
100644 → 100755
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,17 +1,17 @@ | ||
#! /usr/bin/env bats | ||
|
||
@test "ping my_device" { | ||
dl-agent -vv -u dripline --password-file /dl_pw.txt cmd my_device -s ping | ||
dl-agent -vv cmd my_device -s ping | ||
} | ||
|
||
@test "get idn" { | ||
dl-agent -vv -u dripline --password-file /dl_pw.txt get idn | ||
dl-agent -vv get idn | ||
} | ||
|
||
@test "get voltage" { | ||
dl-agent -vv -u dripline --password-file /dl_pw.txt get voltage | ||
dl-agent -vv get voltage | ||
} | ||
|
||
@test "get idn" { | ||
dl-agent -vv -u dripline --password-file /dl_pw.txt set voltage 10.1 | ||
@test "set voltage" { | ||
dl-agent -vv set voltage 10.1 | ||
} |