diff options
Diffstat (limited to 'Lib/test/test_operator.py')
-rw-r--r-- | Lib/test/test_operator.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_operator.py b/Lib/test/test_operator.py index b75c5ba..92efaa2 100644 --- a/Lib/test/test_operator.py +++ b/Lib/test/test_operator.py @@ -31,6 +31,8 @@ if a != [0, 1, 8, 9]: a = range(10) test('div', 5, 2, 2) +test('floordiv', 5, 2, 2) +test('truediv', 5, 2.5, 2) test('getitem', a, 2, 2) test('getslice', a, [4, 5], 4, 6) test('indexOf', [4, 3, 2, 1], 1, 3) |