Skip to content

Commit

Permalink
Update test_float
Browse files Browse the repository at this point in the history
Removed methods test_multiply_dict,test_multiply_none,test_multiply_set,test_multiply_bool,test_multiply_int,test_multiply_float,test_multiply_str,
test_eq_str
  • Loading branch information
prachi2396 committed Apr 6, 2016
1 parent 19a3718 commit 8de0f72
Showing 1 changed file with 20 additions and 11 deletions.
31 changes: 20 additions & 11 deletions tests/datatypes/test_float.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ class UnaryFloatOperationTests(UnaryOperationTestCase, TranspileTestCase):
not_implemented = [
'test_unary_positive',
'test_unary_negative',
'test_unary_not',
'test_unary_invert',
]

Expand All @@ -42,6 +41,7 @@ class BinaryFloatOperationTests(BinaryOperationTestCase, TranspileTestCase):
'test_add_frozenset',
'test_add_int',
'test_add_list',
'test_add_none',
'test_add_set',
'test_add_str',
'test_add_tuple',
Expand All @@ -60,8 +60,8 @@ class BinaryFloatOperationTests(BinaryOperationTestCase, TranspileTestCase):
'test_eq_dict',
'test_eq_frozenset',
'test_eq_list',
'test_eq_none',
'test_eq_set',
'test_eq_str',
'test_eq_tuple',

'test_floor_divide_bool',
Expand All @@ -74,6 +74,7 @@ class BinaryFloatOperationTests(BinaryOperationTestCase, TranspileTestCase):
'test_floor_divide_frozenset',
'test_floor_divide_int',
'test_floor_divide_list',
'test_floor_divide_none',
'test_floor_divide_set',
'test_floor_divide_str',
'test_floor_divide_tuple',
Expand All @@ -88,6 +89,7 @@ class BinaryFloatOperationTests(BinaryOperationTestCase, TranspileTestCase):
'test_ge_frozenset',
'test_ge_int',
'test_ge_list',
'test_ge_none',
'test_ge_set',
'test_ge_str',
'test_ge_tuple',
Expand All @@ -102,6 +104,7 @@ class BinaryFloatOperationTests(BinaryOperationTestCase, TranspileTestCase):
'test_gt_frozenset',
'test_gt_int',
'test_gt_list',
'test_gt_none',
'test_gt_set',
'test_gt_str',
'test_gt_tuple',
Expand All @@ -116,6 +119,7 @@ class BinaryFloatOperationTests(BinaryOperationTestCase, TranspileTestCase):
'test_le_frozenset',
'test_le_int',
'test_le_list',
'test_le_none',
'test_le_set',
'test_le_str',
'test_le_tuple',
Expand All @@ -142,22 +146,20 @@ class BinaryFloatOperationTests(BinaryOperationTestCase, TranspileTestCase):
'test_modulo_frozenset',
'test_modulo_int',
'test_modulo_list',
'test_modulo_none',
'test_modulo_set',
'test_modulo_str',
'test_modulo_tuple',

'test_multiply_bool',
'test_multiply_bytearray',
'test_multiply_bytes',
'test_multiply_class',
'test_multiply_complex',
'test_multiply_dict',
'test_multiply_float',
'test_multiply_frozenset',
'test_multiply_int',
'test_multiply_list',
'test_multiply_none',
'test_multiply_set',
'test_multiply_str',
'test_multiply_tuple',

'test_ne_bool',
Expand All @@ -170,6 +172,7 @@ class BinaryFloatOperationTests(BinaryOperationTestCase, TranspileTestCase):
'test_ne_frozenset',
'test_ne_int',
'test_ne_list',
'test_ne_none',
'test_ne_set',
'test_ne_str',
'test_ne_tuple',
Expand Down Expand Up @@ -205,6 +208,7 @@ class BinaryFloatOperationTests(BinaryOperationTestCase, TranspileTestCase):
'test_subscr_frozenset',
'test_subscr_int',
'test_subscr_list',
'test_subscr_none',
'test_subscr_set',
'test_subscr_str',
'test_subscr_tuple',
Expand All @@ -216,6 +220,7 @@ class BinaryFloatOperationTests(BinaryOperationTestCase, TranspileTestCase):
'test_subtract_dict',
'test_subtract_frozenset',
'test_subtract_list',
'test_subtract_none',
'test_subtract_set',
'test_subtract_str',
'test_subtract_tuple',
Expand Down Expand Up @@ -248,6 +253,7 @@ class InplaceFloatOperationTests(InplaceOperationTestCase, TranspileTestCase):
'test_add_frozenset',
'test_add_int',
'test_add_list',
'test_add_none',
'test_add_set',
'test_add_str',
'test_add_tuple',
Expand All @@ -262,6 +268,7 @@ class InplaceFloatOperationTests(InplaceOperationTestCase, TranspileTestCase):
'test_and_frozenset',
'test_and_int',
'test_and_list',
'test_and_none',
'test_and_set',
'test_and_str',
'test_and_tuple',
Expand All @@ -276,6 +283,7 @@ class InplaceFloatOperationTests(InplaceOperationTestCase, TranspileTestCase):
'test_floor_divide_frozenset',
'test_floor_divide_int',
'test_floor_divide_list',
'test_floor_divide_none',
'test_floor_divide_set',
'test_floor_divide_str',
'test_floor_divide_tuple',
Expand All @@ -290,6 +298,7 @@ class InplaceFloatOperationTests(InplaceOperationTestCase, TranspileTestCase):
'test_lshift_frozenset',
'test_lshift_int',
'test_lshift_list',
'test_lshift_none',
'test_lshift_set',
'test_lshift_str',
'test_lshift_tuple',
Expand All @@ -304,21 +313,17 @@ class InplaceFloatOperationTests(InplaceOperationTestCase, TranspileTestCase):
'test_modulo_frozenset',
'test_modulo_int',
'test_modulo_list',
'test_modulo_none',
'test_modulo_set',
'test_modulo_str',
'test_modulo_tuple',

'test_multiply_bool',
'test_multiply_bytearray',
'test_multiply_bytes',
'test_multiply_class',
'test_multiply_complex',
'test_multiply_dict',
'test_multiply_float',
'test_multiply_frozenset',
'test_multiply_int',
'test_multiply_list',
'test_multiply_set',
'test_multiply_str',
'test_multiply_tuple',

Expand All @@ -332,6 +337,7 @@ class InplaceFloatOperationTests(InplaceOperationTestCase, TranspileTestCase):
'test_or_frozenset',
'test_or_int',
'test_or_list',
'test_or_none',
'test_or_set',
'test_or_str',
'test_or_tuple',
Expand All @@ -346,6 +352,7 @@ class InplaceFloatOperationTests(InplaceOperationTestCase, TranspileTestCase):
'test_power_frozenset',
'test_power_int',
'test_power_list',
'test_power_none',
'test_power_set',
'test_power_str',
'test_power_tuple',
Expand All @@ -360,6 +367,7 @@ class InplaceFloatOperationTests(InplaceOperationTestCase, TranspileTestCase):
'test_rshift_frozenset',
'test_rshift_int',
'test_rshift_list',
'test_rshift_none',
'test_rshift_set',
'test_rshift_str',
'test_rshift_tuple',
Expand All @@ -386,6 +394,7 @@ class InplaceFloatOperationTests(InplaceOperationTestCase, TranspileTestCase):
'test_xor_frozenset',
'test_xor_int',
'test_xor_list',
'test_xor_none',
'test_xor_set',
'test_xor_str',
'test_xor_tuple',
Expand Down

0 comments on commit 8de0f72

Please sign in to comment.