Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Commit

Permalink
#127 - Replaced test meta from +junit to +tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Graur committed May 19, 2023
1 parent 6cf05ae commit d83248b
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 12 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ SOFTWARE
<dependency>
<groupId>org.eolang</groupId>
<artifactId>eo-runtime</artifactId>
<version>0.29.1</version>
<version>0.29.4</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down Expand Up @@ -129,7 +129,7 @@ SOFTWARE
<plugin>
<groupId>org.eolang</groupId>
<artifactId>eo-maven-plugin</artifactId>
<version>0.29.1</version>
<version>0.29.4</version>
<executions>
<execution>
<id>compile</id>
Expand Down
9 changes: 7 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,10 @@
"extends": [
"config:base"
],
"ignoreDeps": ["maven-compiler-plugin"]
}
"packageRules": [
{
"matchPackageNames": ["maven-compiler-plugin"],
"allowedVersions": "3.8.1"
}
]
}
2 changes: 1 addition & 1 deletion src/test/eo/org/eolang/math/angle-tests.eo
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
+alias org.eolang.math.angle
+alias org.eolang.math.number
+home https://github.com/objectionary/eo-math
+junit
+package org.eolang.math
+tests
+version 0.0.0

[] > sin-zero
Expand Down
2 changes: 1 addition & 1 deletion src/test/eo/org/eolang/math/e-tests.eo
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

+alias org.eolang.math.e
+home https://github.com/objectionary/eo-math
+junit
+package org.eolang.math
+tests
+version 0.0.0

[] > the-eulers-number-is-correct
Expand Down
4 changes: 2 additions & 2 deletions src/test/eo/org/eolang/math/integral-tests.eo
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
+alias org.eolang.math.integral
+alias org.eolang.math.number
+home https://github.com/objectionary/eo-math
+junit
+package org.eolang.math
+tests
+version 0.0.0

# @todo #99:30min. To fix failed tests.
Expand Down Expand Up @@ -75,7 +75,7 @@
0.0000001

# @todo #93:30min This test fails due to
# incorrect choose of steps in the
# Incorrect choose of steps in the
# integral implementation. For excluding
# this error, Simpson's rule for
# determing n should be written.
Expand Down
2 changes: 1 addition & 1 deletion src/test/eo/org/eolang/math/number-tests.eo
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
+alias org.eolang.math.number
+alias org.eolang.math.pi
+home https://github.com/objectionary/eo-math
+junit
+package org.eolang.math
+tests
+version 0.0.0

# @todo #99:30min. To fix failed tests.
Expand Down
2 changes: 1 addition & 1 deletion src/test/eo/org/eolang/math/pi-tests.eo
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

+alias org.eolang.math.pi
+home https://github.com/objectionary/eo-math
+junit
+package org.eolang.math
+tests
+version 0.0.0

[] > the-pi-number-is-correct
Expand Down
2 changes: 1 addition & 1 deletion src/test/eo/org/eolang/math/random-tests.eo
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
+alias org.eolang.hamcrest.assert-that
+alias org.eolang.math.random
+home https://github.com/objectionary/eo-math
+junit
+package org.eolang.math
+tests
+version 0.0.0

# @todo #105:30min. Remove nop objects. All of these three tests
Expand Down
2 changes: 1 addition & 1 deletion src/test/eo/org/eolang/math/series-tests.eo
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
+alias org.eolang.math.series
+alias org.eolang.hamcrest.assert-that
+home https://github.com/objectionary/eo-math
+junit
+package org.eolang.math
+tests
+version 0.0.0

[] > max-of-empty-array
Expand Down

2 comments on commit d83248b

@0pdd
Copy link

@0pdd 0pdd commented on d83248b May 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 93-b28a2be4 disappeared from src/test/eo/org/eolang/math/integral-tests.eo), that's why I closed #96. Please, remember that the puzzle was not necessarily removed in this particular commit. Maybe it happened earlier, but we discovered this fact only now.

@0pdd
Copy link

@0pdd 0pdd commented on d83248b May 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 93-4de9e62f discovered in src/test/eo/org/eolang/math/integral-tests.eo) and submitted as #129. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

Please sign in to comment.