-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve error messages in space-age exercise
[no important files changed]
- Loading branch information
Showing
1 changed file
with
10 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,46 @@ | ||
func roughly_equal(n1, n2): | ||
return abs(n1 - n2) <= 0.01 | ||
|
||
|
||
func test_age_on_Earth(solution_script): | ||
var age = solution_script.on_planet('Earth', 1000000000) | ||
var expected = 31.69 | ||
return [roughly_equal(age, expected), true] | ||
var expected = 31.644 | ||
return [snappedf(age, 0.01), 0.01), expected] | ||
|
||
|
||
func test_age_on_Mercury(solution_script): | ||
var age = solution_script.on_planet('Mercury', 2134835688) | ||
var expected = 280.88 | ||
return [roughly_equal(age, expected), true] | ||
var expected = 280.888 | ||
return [snappedf(age, 0.01), expected] | ||
|
||
|
||
func test_age_on_Venus(solution_script): | ||
var age = solution_script.on_planet('Venus', 189839836) | ||
var expected = 9.78 | ||
return [roughly_equal(age, expected), true] | ||
return [snappedf(age, 0.01), expected] | ||
|
||
|
||
func test_age_on_Mars(solution_script): | ||
var age = solution_script.on_planet('Mars', 2129871239) | ||
var expected = 35.88 | ||
return [roughly_equal(age, expected), true] | ||
return [snappedf(age, 0.01), expected] | ||
|
||
|
||
func test_age_on_Jupiter(solution_script): | ||
var age = solution_script.on_planet('Jupiter', 901876382) | ||
var expected = 2.41 | ||
return [roughly_equal(age, expected), true] | ||
return [snappedf(age, 0.01), expected] | ||
|
||
|
||
func test_age_on_Saturn(solution_script): | ||
var age = solution_script.on_planet('Saturn', 2000000000) | ||
var expected = 2.15 | ||
return [roughly_equal(age, expected), true] | ||
return [snappedf(age, 0.01), expected] | ||
|
||
|
||
func test_age_on_Uranus(solution_script): | ||
var age = solution_script.on_planet('Uranus', 1210123456) | ||
var expected = 0.46 | ||
return [roughly_equal(age, expected), true] | ||
return [snappedf(age, 0.01), expected] | ||
|
||
|
||
func test_age_on_Neptune(solution_script): | ||
var age = solution_script.on_planet('Neptune', 1821023456) | ||
var expected = 0.35 | ||
return [roughly_equal(age, expected), true] | ||
return [snappedf(age, 0.01), expected] |