-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: dogi <dogi@users.noreply.github.com>
- Loading branch information
Showing
2 changed files
with
39 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,38 @@ | ||
#!/usr/bin/env bats | ||
load test-helper | ||
|
||
@test "$clinom resolution" { | ||
run "${clicmd}" resolution | ||
assert_success && assert_output -p 'hdmi group should be either' | ||
} | ||
|
||
@test "$clinom resolution cea" { | ||
run "${clicmd}" resolution cea | ||
assert_output -p 'mode is not available' && assert_output -p 'Group CEA has' | ||
} | ||
|
||
@test "$clinom resolution cea 4" { | ||
run "${clicmd}" resolution cea 4 | ||
assert_output -p 'Screen resolution set to mode4:' && assert_output -p 'reboot needed to see the changes' | ||
} | ||
|
||
@test "$clinom resolution cea 1337 (non-existent mode)" { | ||
run "${clicmd}" resolution cea 1337 | ||
assert_output -p 'mode is not available' && assert_output -p 'Group CEA has' | ||
} | ||
|
||
@test "$clinom resolution dmt" { | ||
run "${clicmd}" resolution dmt | ||
assert_output -p 'mode is not available' && assert_output -p 'Group DMT has' | ||
} | ||
|
||
@test "$clinom resolution dmt 4" { | ||
run "${clicmd}" resolution dmt 4 | ||
assert_output -p 'Screen resolution set to mode4:' && assert_output -p 'reboot needed to see the changes' | ||
} | ||
|
||
@test "$clinom resolution dmt 1337 (non-existent mode)" { | ||
run "${clicmd}" resolution dmt 1337 | ||
assert_output -p 'mode is not available' && assert_output -p 'Group DMT has' | ||
} | ||
|