Skip to content
Snippets Groups Projects
Unverified Commit eab54563 authored by Ned Batchelder's avatar Ned Batchelder Committed by GitHub
Browse files

Merge pull request #22212 from edx/nedbat/more-rounding-tests

Add more tests of the new round()
parents e1db02ca 0fc8bb5e
No related branches found
Tags release-2021-02-26-00.05
No related merge requests found
......@@ -48,8 +48,14 @@ class TestGradeUtils(TestCase):
@ddt.data(
(0.5, 1),
(1.49, 1),
(1.5, 2),
(1.51, 2),
(2.5, 3),
(1.45, 1.5, 1),
(-0.5, -1.0),
(-1.5, -2.0),
(-2.5, -3.0),
(-0.1, -0.0),
(0.1, 0.0),
(0.0, 0.0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment