mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
18 lines
453 B
Crystal
18 lines
453 B
Crystal
require "spec"
|
|
require "./methods/*"
|
|
|
|
check_top_level_imports("modules")
|
|
check_top_level_imports("overlays")
|
|
|
|
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
|