nix-super/tests/unit
Rebecca Turner c0a15fb7d0
Pretty-print values in the REPL
Pretty-print values in the REPL by printing each item in a list or
attrset on a separate line. When possible, single-item lists and
attrsets are printed on one line, as long as they don't contain a nested
list, attrset, or thunk.

Before:
```
{ attrs = { a = { b = { c = { }; }; }; }; list = [ 1 ]; list' = [ 1 2 3 ]; }
```

After:
```
{
  attrs = {
    a = {
      b = {
        c = { };
      };
    };
  };
  list = [ 1 ];
  list' = [
    1
    2
    3
  ];
}
```
2024-02-05 13:23:38 -08:00
..
libexpr Pretty-print values in the REPL 2024-02-05 13:23:38 -08:00
libexpr-support Only link with -pthread on Unix 2024-01-10 20:38:39 -05:00
libstore Merge pull request #9867 from hercules-ci/issue-912 2024-01-31 19:10:59 +01:00
libstore-support test: Generate distinct path names 2024-01-31 18:35:19 +01:00
libutil CanonPath, SourcePath: Change operator + to / 2024-02-05 15:17:39 +01:00
libutil-support test: Generate distinct hashes 2024-01-31 18:35:19 +01:00