codeberg-cli 0.5.5

CLI Tool for codeberg similar to gh and glab
Documentation
{ inputs, ... }:
{
  perSystem =
    {
      self',
      lib,
      pkgs,
      ...
    }:
    let
      tapeTestLib = inputs.self.tapeTestLib { inherit self' lib pkgs; };
    in
    {
      checks = tapeTestLib.embeddInFlake {
        configInfo = {
          extraSetup = [
            "berg auth login --token TOKEN"
          ];
          exec = [
            ''Type "berg config info"''
            "Sleep 500ms"
            "Enter"
            "Sleep 3s"
          ];
        };
      };
    };
}