Fix 22.11 tests (#3678)
* broot: update test to match upstream changes Fixes #3527 (cherry picked from commit18b56e3f7d
) * broot: simplify test slightly (cherry picked from commitd7a3c26854
) * i3status-rust: fix tests Nix 2.12.0 slightly changed the JSON output format. This updates the i3status-rust test cases to match. (cherry picked from commit263f6e4523
)
This commit is contained in:
parent
00efa2d4c2
commit
2928097823
|
@ -1,9 +1,6 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ ... }:
|
||||||
|
|
||||||
with lib;
|
|
||||||
|
|
||||||
{
|
{
|
||||||
config = {
|
|
||||||
programs.broot = {
|
programs.broot = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings.modal = true;
|
settings.modal = true;
|
||||||
|
@ -12,15 +9,18 @@ with lib;
|
||||||
nmt.script = ''
|
nmt.script = ''
|
||||||
assertFileExists home-files/.config/broot/conf.toml
|
assertFileExists home-files/.config/broot/conf.toml
|
||||||
assertFileContent home-files/.config/broot/conf.toml ${
|
assertFileContent home-files/.config/broot/conf.toml ${
|
||||||
pkgs.writeText "broot.expected" ''
|
builtins.toFile "broot.expected" ''
|
||||||
|
content_search_max_file_size = "10MB"
|
||||||
imports = ["verbs.hjson", {file = "dark-blue-skin.hjson", luma = ["dark", "unknown"]}, {file = "white-skin.hjson", luma = "light"}]
|
imports = ["verbs.hjson", {file = "dark-blue-skin.hjson", luma = ["dark", "unknown"]}, {file = "white-skin.hjson", luma = "light"}]
|
||||||
modal = true
|
modal = true
|
||||||
show_selection_mark = true
|
show_selection_mark = true
|
||||||
verbs = []
|
verbs = []
|
||||||
|
|
||||||
[skin]
|
[skin]
|
||||||
|
|
||||||
|
[special_paths]
|
||||||
|
"/media" = "no-enter"
|
||||||
''
|
''
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -102,14 +102,14 @@ with lib;
|
||||||
icons = "awesome5"
|
icons = "awesome5"
|
||||||
theme = "gruvbox-dark"
|
theme = "gruvbox-dark"
|
||||||
[[block]]
|
[[block]]
|
||||||
alert = 10
|
alert = 10.0
|
||||||
alias = "/"
|
alias = "/"
|
||||||
block = "disk_space"
|
block = "disk_space"
|
||||||
info_type = "available"
|
info_type = "available"
|
||||||
interval = 60
|
interval = 60
|
||||||
path = "/"
|
path = "/"
|
||||||
unit = "GB"
|
unit = "GB"
|
||||||
warning = 20
|
warning = 20.0
|
||||||
|
|
||||||
[[block]]
|
[[block]]
|
||||||
block = "memory"
|
block = "memory"
|
||||||
|
|
|
@ -16,14 +16,14 @@ with lib;
|
||||||
icons = "none"
|
icons = "none"
|
||||||
theme = "plain"
|
theme = "plain"
|
||||||
[[block]]
|
[[block]]
|
||||||
alert = 10
|
alert = 10.0
|
||||||
alias = "/"
|
alias = "/"
|
||||||
block = "disk_space"
|
block = "disk_space"
|
||||||
info_type = "available"
|
info_type = "available"
|
||||||
interval = 60
|
interval = 60
|
||||||
path = "/"
|
path = "/"
|
||||||
unit = "GB"
|
unit = "GB"
|
||||||
warning = 20
|
warning = 20.0
|
||||||
|
|
||||||
[[block]]
|
[[block]]
|
||||||
block = "memory"
|
block = "memory"
|
||||||
|
|
|
@ -111,14 +111,14 @@ with lib;
|
||||||
pkgs.writeText "i3status-rust-expected-config" ''
|
pkgs.writeText "i3status-rust-expected-config" ''
|
||||||
icons = "awesome5"
|
icons = "awesome5"
|
||||||
[[block]]
|
[[block]]
|
||||||
alert = 10
|
alert = 10.0
|
||||||
alias = "/"
|
alias = "/"
|
||||||
block = "disk_space"
|
block = "disk_space"
|
||||||
info_type = "available"
|
info_type = "available"
|
||||||
interval = 60
|
interval = 60
|
||||||
path = "/"
|
path = "/"
|
||||||
unit = "GB"
|
unit = "GB"
|
||||||
warning = 20
|
warning = 20.0
|
||||||
|
|
||||||
[[block]]
|
[[block]]
|
||||||
block = "memory"
|
block = "memory"
|
||||||
|
|
|
@ -62,14 +62,14 @@ with lib;
|
||||||
icons = "none"
|
icons = "none"
|
||||||
theme = "plain"
|
theme = "plain"
|
||||||
[[block]]
|
[[block]]
|
||||||
alert = 10
|
alert = 10.0
|
||||||
alias = "/"
|
alias = "/"
|
||||||
block = "disk_space"
|
block = "disk_space"
|
||||||
info_type = "available"
|
info_type = "available"
|
||||||
interval = 60
|
interval = 60
|
||||||
path = "/"
|
path = "/"
|
||||||
unit = "GB"
|
unit = "GB"
|
||||||
warning = 20
|
warning = 20.0
|
||||||
|
|
||||||
[[block]]
|
[[block]]
|
||||||
block = "memory"
|
block = "memory"
|
||||||
|
|
Loading…
Reference in a new issue