-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* tests/test_get_availableFirmware-definition.txt Added test for get availableFirmware option * Makefile Download UnitTest makefile from fhem/UnitTest Repository Added fhem kill command to finish all open processes
- Loading branch information
Showing
2 changed files
with
19 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
defmod test_get_availableFirmware UnitTest dummyDuino | ||
( | ||
{ | ||
|
||
subtest 'Test get availableFirmware' => sub { | ||
plan tests => 2; | ||
$attr{$target}{updateChannelFW} = "stable"; | ||
|
||
my $ret=SIGNALduino_Get($targetHash, $target, "availableFirmware"); | ||
like($ret,qr/.*get availableFirmware failed.*/,"check return contains failed"); | ||
|
||
$attr{$target}{hardware} = "nano328"; | ||
$ret=SIGNALduino_Get($targetHash, $target, "availableFirmware"); | ||
is($ret,"availableFirmware: \n\nFetching stable firmware versions for nano328 from github\n","check return is fetching"); | ||
}; | ||
} | ||
) |