From af43565322f5c45a1a92df1afceff24c93021998 Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 12 Mar 2015 22:47:44 +0000 Subject: tests: Add tests for things that are not already tested. The aim here is to improve coverage of the code. --- tests/float/float1.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests/float/float1.py') diff --git a/tests/float/float1.py b/tests/float/float1.py index 5971e6d0a..7b5887ff0 100644 --- a/tests/float/float1.py +++ b/tests/float/float1.py @@ -2,6 +2,11 @@ x = 1 / 2 print(x) +# /= operator +a = 1 +a /= 2 +print(a) + print(1.0 // 2) print(2.0 // 2) -- cgit v1.2.3