exercism / exercism/problem-specifications
Rational-Numbers: >, <, ==, !=, >=, <= comparison tests?
- Ngôn ngữ chính
- Ruby
- Star
- 358
- Fork
- 563
- Merge trung bình
- 18 giờ 41 phút
- Pull request đã merge (30 ngày)
- 2
Mô tả
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.
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Đánh giá
Issue này chưa được đánh giá.