nix-config/tests/main.cr
Donovan Glover 1c15106231
tests: Remove joshuto check
No longer needed since v0.9.5 was released.
2023-07-04 18:59:21 -04:00

16 lines
440 B
Crystal

require "spec"
require "./check_top_level_imports"
require "./check_latest_commit"
check_top_level_imports("containers")
check_top_level_imports("home")
check_top_level_imports("modules")
check_top_level_imports("overlays")
check_top_level_imports("specializations")
describe "./overlays/rofi/default.nix", tags: "online" do
it "uses the latest rofi-wayland commit" do
check_latest_commit("lbonn/rofi", branch: "wayland")
end
end