Skip to content

Commit

Permalink
chore(t3.rexx): bulk update 't3.rexx' unit test component (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajborla authored Jul 16, 2024
1 parent 3119bb0 commit 9d79cb5
Show file tree
Hide file tree
Showing 65 changed files with 130 additions and 130 deletions.
4 changes: 2 additions & 2 deletions exercises/practice/accumulate/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/acronym/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/all-your-base/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/anagram/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/armstrong-numbers/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/atbash-cipher/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/bank-account/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/beer-song/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/binary-search/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/bob/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/clock/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/collatz-conjecture/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/custom-set/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/darts/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/difference-of-squares/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/error-handling/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/etl/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/gigasecond/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/grade-school/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/grains/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/hamming/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/hello-world/t3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ expect:
select
when op == 'to be' | op == '=' then
return report(actualValue, op, expected, actualValue == expected)
when op == 'not to be' | op == '^=' | op == '<>' then
when op == 'not to be' | op == '\=' | op == '^=' | op == '<>' then
return report(actualValue, op, expected, actualValue \== expected)
when op == 'larger than' | op == '>' then
return report(actualValue, op, expected, actualValue > expected)
Expand All @@ -119,7 +119,7 @@ expect:
otherwise do
say 'operand 'op' unknown. Known operands are:'
say ' to be (=), '
say ' not to be (^= or <>), '
say ' not to be (\= or ^= or <>), '
say ' larger than (>),'
say ' larger than or equal to (>=), '
say ' less than (<) and'
Expand Down
Loading

0 comments on commit 9d79cb5

Please sign in to comment.