exercism / exercism/problem-specifications
Rational-Numbers: >, <, ==, !=, >=, <= comparison tests?
- Lenguaje dominante
- Ruby
- Estrellas
- 358
- Forks
- 563
- Merge medio
- 18 h 41 min
- PR fusionados (30 d)
- 2
Descripción
Would there be any interest in seeing test cases for comparing rational numbers?
```JSON
{
"description": "A half is less than three fourths",
"property": "lessThan",
"input": {
"r1": [1, 2],
"r2": [3, 4]
},
"expected": true
},
{
"description": "Half is greater than a fourth",
"property": "greaterThan",
"input": {
"r1": [1, 2],
"r2": [1, 4]
},
"expected": true
},
{
"description": "One is greater than or equal to a third",
"property": "greaterThanOrEqual",
"input": {
"r1": [13, 13],
"r2": [1, 3]
},
"expected": true
},
{
"description": "Two of the same are equal",
"property": "equal",
"input": {
"r1": [6, 1],
"r2": [6, 1]
},
"expected": true
},
{
"description": "Two different values are not equal",
"property": "notEqual",
"input": {
"r1": [3, 4],
"r2": [1, 2]
},
"expected": true
}
```
so and so forth.
I looked briefly to see if this topic had already be discussed and didn't find anything.
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.