query
On this page

testAllTrue

lib.testAllTrue

Docs pulled from | This Revision | 34 minutes ago


Create a test assuming that list elements are true.

Inputs

expr

1. Function argument

Examples

lib.debug.testAllTrue usage example

{ testX = allTrue [ true ]; }
(lib.debug.testAllTrue)

Noogle detected

Aliases

Implementation

The following is the current implementation of this function.

testAllTrue = expr: {
    inherit expr;
    expected = map (x: true) expr;
  };