示例#1
0
 def test_extract_cell_updateable_property_cell_is_not_updateable_false(
         self):
     value = 258
     self.assertFalse(
         extract_cell_updateable_property(
             decimal_value=value,
             cell_property=CellUpdateableProperty.CELL_IS_NOT_UPDATEABLE))
示例#2
0
 def test_extract_cell_updateable_property_cell_is_not_updateable_true(
         self):
     value = 268435716
     self.assertTrue(
         extract_cell_updateable_property(
             decimal_value=value,
             cell_property=CellUpdateableProperty.CELL_IS_NOT_UPDATEABLE))
示例#3
0
 def test_extract_cell_updateable_property_rule_is_applied_false(self):
     value = 258
     self.assertFalse(
         extract_cell_updateable_property(
             decimal_value=value,
             cell_property=CellUpdateableProperty.RULE_IS_APPLIED))
示例#4
0
 def test_extract_cell_updateable_property_rule_is_applied_true(self):
     value = 268435716
     self.assertTrue(
         extract_cell_updateable_property(
             decimal_value=value,
             cell_property=CellUpdateableProperty.RULE_IS_APPLIED))