forked from extern/nix-config
19 lines
485 B
Crystal
19 lines
485 B
Crystal
require "spec"
|
|
require "./methods/*"
|
|
|
|
check_top_level_imports("modules")
|
|
check_top_level_imports("overlays")
|
|
check_top_level_imports("home")
|
|
|
|
describe "./overlays/joshuto/default.nix", tags: "online" do
|
|
it "uses the latest joshuto commit" do
|
|
check_latest_commit("kamiyaa/joshuto", branch: "main")
|
|
end
|
|
end
|
|
|
|
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
|