From 1be70856d560c0d95441c5abad3b64aaa13e973a Mon Sep 17 00:00:00 2001 From: Qubasa Date: Sat, 28 Jun 2025 22:42:11 +0700 Subject: [PATCH] Revert "tests/create_clan: bring back read,write checks" This reverts commit f6cad7c4a4d7539e8fc5bce84e2285c0e1b947c6. --- .../clan_cli/tests/test_clan_nix_attrset.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/clan-cli/clan_cli/tests/test_clan_nix_attrset.py b/pkgs/clan-cli/clan_cli/tests/test_clan_nix_attrset.py index 74030e868..7c80cc5fd 100644 --- a/pkgs/clan-cli/clan_cli/tests/test_clan_nix_attrset.py +++ b/pkgs/clan-cli/clan_cli/tests/test_clan_nix_attrset.py @@ -112,15 +112,15 @@ def test_clan_core_templates( Path(default_template.src["path"]), new_clan, ) - flake_file = new_clan / "flake.nix" - - assert (flake_file).exists() - # Test if we can read + write files after the template was copied - with flake_file.open("r+") as f: - data = f.read() - f.write(data) - + assert (new_clan / "flake.nix").exists() assert (new_clan / "machines").is_dir() + # config_nix_p = new_clan / "machines" / "jon" / "configuration.nix" + # assert (config_nix_p).is_file() + + # Test if we can write to the configuration.nix file + # with config_nix_p.open("r+") as f: + # data = f.read() + # f.write(data) # Test Case 1: Minimal input with empty templates