test stuff

This commit is contained in:
Christoph J. Scherr 2024-02-01 10:40:17 +01:00
parent fedee47ed1
commit e86f3b0b6f
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
2 changed files with 7 additions and 0 deletions

View File

@ -123,3 +123,9 @@ Feature: inverted square root calculation
| 0 |
| 20000001.1 |
Then they are not about the same
Scenario: Test if we can use the asterisk
Given a number
* a number
When we calculate the inverted square root of it normally
Then they are not about the same

View File

@ -133,6 +133,7 @@ async fn they_are_not_about_the_same(world: &mut NumWorld) {
}
}
#[tokio::main]
async fn main() {
NumWorld::run("tests/features/book/revsqrt.feature").await;