Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
gampleman committed Mar 16, 2024
1 parent 650ca86 commit f4fa138
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs.json

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions tests/FloatTests.elm
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,12 @@ testBoundaryValuesAsUnicode =

testAboutEqual : Test
testAboutEqual =
fuzz Fuzz.niceFloat "makes numbers about equal even after some operations" <|
\a ->
((a + 10 + a - 10 - a) * 2 / 2)
|> aboutEqual a
|> Expect.equal True
Test.only <|
fuzz (Fuzz.floatRange -1.0e100 1.0e100) "makes numbers about equal even after some operations" <|
\a ->
((a + 10 + a - 10 - a) * 2 / 2)
|> aboutEqual a
|> Expect.equal True


testRange : Test
Expand Down

0 comments on commit f4fa138

Please sign in to comment.