File: bad_method.t

package info (click to toggle)
libnumber-tolerant-perl 1.710-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 372 kB
  • sloc: perl: 757; makefile: 10
file content (137 lines) | stat: -rw-r--r-- 2,538 bytes parent folder | download | duplicates (2)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
use Test::More tests => 22;

use strict;
use warnings;

BEGIN { use_ok("Number::Tolerant"); }

## this test right here... it used to test for a bad method
## but it ain't like that no more
## a tolerance of a number is that number
## and that's just the way it is.
is(
  Number::Tolerant->new(5),
  5,
  "constants return constants"
);

is(
  eval { Number::Tolerant->new(5 => 'thingie' => 0.5) },
  undef,
  "there is no 'thingie' method"
);

is(
  eval { Number::Tolerant->new(5 => 'to') },
  undef,
  "'to' requires two values"
);

is(
  eval { Number::Tolerant->new(5 => to => 'life') },
  undef,
  "'to' requires two numbers"
);

is(
  eval { Number::Tolerant->new(5 => 'plus_or_minus') },
  undef,
  "'plus_or_minus' requires two values"
);

is(
  eval { Number::Tolerant->new(5 => 'plus_or_minus_pct') },
  undef,
  "'plus_or_minus_pct' requires two values"
);

is(
  eval { Number::Tolerant->new(5 => 'plus_or_minus' => 'zero') },
  undef,
  "'plus_or_minus' requires two numbers"
);

is(
  eval { Number::Tolerant->new(5 => 'plus_or_minus_pct' => 'zero') },
  undef,
  "'plus_or_minus_pct' requires two numbers"
);

is(
  eval { Number::Tolerant->new(five => 'exactly') },
  undef,
  "invalid two-arg construction"
);

is(
  eval { Number::Tolerant->new(just_about => 12) },
  undef,
  "invalid two-arg construction"
);

is(
  eval { Number::Tolerant->new() },
  undef,
  "at least one param required"
);

is(
  eval { Number::Tolerant->new('things') },
  undef,
  "single, non-numeric argument"
);

is(
  eval { Number::Tolerant->new(undef) },
  undef,
  "single, undefined argument"
);

is(
  eval { Number::Tolerant->new('') },
  undef,
  "single, pseudo-numeric argument"
);

is(
  eval { Number::Tolerant->new(undef , 'to' , undef) },
  undef,
  "undef-undef range not valid (should it be?)"
);

is(
  eval { Number::Tolerant->new('string' => 'broken' => 'args') },
  undef,
  "three invalid params"
);

# let's pander to offset's four-parters:
is(
  eval { Number::Tolerant->new('string' => 'broken' => 'args' => 'fourway') },
  undef,
  "four lousy params"
);

is(
  eval { Number::Tolerant->new(10 => 'broken' => 'args' => 'fourway') },
  undef,
  "number, then three invalid params"
);

is(
  eval { Number::Tolerant->new(10 => 'offset' => 'args' => 'fourway') },
  undef,
  "10 offset blah blah",
);

is(
  eval { Number::Tolerant->new(10 => 'offset' => 3 => 'fourway') },
  undef,
  "10 offset number blah"
);

is(
  eval { Number::Tolerant->new(10 => 'offset' => undef => 4) },
  undef,
  "10 offset undef number"
);