exercism / exercism/problem-specifications

Rational-Numbers: >, <, ==, !=, >=, <= comparison tests?

Open
#1,481 7 comments 1 reaction 0 assignees View on GitHub
new test case idea
Dominant language
Ruby
Stars
358
Forks
563
Avg merge
18h 41m
Merged PRs (30d)
2

Description

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.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.