-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__affirm_value_is_positive_integer.expected.txt
More file actions
48 lines (48 loc) · 2.45 KB
/
Copy path__affirm_value_is_positive_integer.expected.txt
File metadata and controls
48 lines (48 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
-------------------------------------------------------------------------------
__affirm_value_is_positive_integer
ERROR: __affirm_value_is_positive_integer: Expected one or two arguments, but 0 were provided.
[status = 22]
-------------------------------------------------------------------------------
__affirm_value_is_positive_integer ''
ERROR: __eval: The value must be a positive integer, it was: [ empty ]
[status = 22]
-------------------------------------------------------------------------------
__affirm_value_is_positive_integer '' custom-name-of-value
ERROR: __eval: The custom-name-of-value must be a positive integer, it was: [ empty ]
[status = 22]
-------------------------------------------------------------------------------
__affirm_value_is_positive_integer 1
[status = 0]
-------------------------------------------------------------------------------
__affirm_value_is_positive_integer 1 custom-name-of-value
[status = 0]
-------------------------------------------------------------------------------
__affirm_value_is_positive_integer 0
[status = 0]
-------------------------------------------------------------------------------
__affirm_value_is_positive_integer 0 custom-name-of-value
[status = 0]
-------------------------------------------------------------------------------
__affirm_value_is_positive_integer -0
ERROR: __eval: The value must be a positive integer, it was: -0
[status = 22]
-------------------------------------------------------------------------------
__affirm_value_is_positive_integer -0 custom-name-of-value
ERROR: __eval: The custom-name-of-value must be a positive integer, it was: -0
[status = 22]
-------------------------------------------------------------------------------
__affirm_value_is_positive_integer -1
ERROR: __eval: The value must be a positive integer, it was: -1
[status = 22]
-------------------------------------------------------------------------------
__affirm_value_is_positive_integer -1 custom-name-of-value
ERROR: __eval: The custom-name-of-value must be a positive integer, it was: -1
[status = 22]
-------------------------------------------------------------------------------
__affirm_value_is_positive_integer a
ERROR: __eval: The value must be a positive integer, it was: a
[status = 22]
-------------------------------------------------------------------------------
__affirm_value_is_positive_integer a custom-name-of-value
ERROR: __eval: The custom-name-of-value must be a positive integer, it was: a
[status = 22]