当前位置: 首页>>代码示例>>Python>>正文


Python Worksheet.A1方法代码示例

本文整理汇总了Python中dirigible.sheet.worksheet.Worksheet.A1方法的典型用法代码示例。如果您正苦于以下问题:Python Worksheet.A1方法的具体用法?Python Worksheet.A1怎么用?Python Worksheet.A1使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在dirigible.sheet.worksheet.Worksheet的用法示例。


在下文中一共展示了Worksheet.A1方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_setattr_should_not_delegate_to_setitem_if_attr_name_is_not_valid_cell_name

# 需要导入模块: from dirigible.sheet.worksheet import Worksheet [as 别名]
# 或者: from dirigible.sheet.worksheet.Worksheet import A1 [as 别名]
    def test_setattr_should_not_delegate_to_setitem_if_attr_name_is_not_valid_cell_name(self):
        ws = Worksheet()
        ws.__setitem__ = Mock()

        ws.A1 = 23

        self.assertEquals( ws.__setitem__.call_args_list, [] )
        self.assertEquals( ws.A1, 23 )
开发者ID:bwhmather,项目名称:dirigible-spreadsheet,代码行数:10,代码来源:test_worksheet.py

示例2: test_load_constants_should_clear_errors_for_constants

# 需要导入模块: from dirigible.sheet.worksheet import Worksheet [as 别名]
# 或者: from dirigible.sheet.worksheet.Worksheet import A1 [as 别名]
    def test_load_constants_should_clear_errors_for_constants(self):
        cell = Cell()
        cell.formula = "a constant"
        cell.error = 'Ohno!'
        worksheet = Worksheet()
        worksheet.A1 = cell

        load_constants(worksheet)

        self.assertIsNone(cell.error)
开发者ID:bwhmather,项目名称:dirigible-spreadsheet,代码行数:12,代码来源:test_calculate.py

示例3: test_sheet_to_ui_json_grid_data_should_not_include_totally_empty_cells

# 需要导入模块: from dirigible.sheet.worksheet import Worksheet [as 别名]
# 或者: from dirigible.sheet.worksheet.Worksheet import A1 [as 别名]
    def test_sheet_to_ui_json_grid_data_should_not_include_totally_empty_cells(self):
        worksheet = Worksheet()
        worksheet.A1 = Cell()

        expected_json_contents = {
            'bottom': 10,
            'left': 0,
            'right': 10,
            'topmost': 0
        }
        self.assertEquals(json.loads(sheet_to_ui_json_grid_data(worksheet, (0, 0, 10, 10))), expected_json_contents)
开发者ID:bwhmather,项目名称:dirigible-spreadsheet,代码行数:13,代码来源:test_ui_jsonifier.py

示例4: test_setattr_should_delegate_to_setitem_if_attr_name_is_valid_cell_name

# 需要导入模块: from dirigible.sheet.worksheet import Worksheet [as 别名]
# 或者: from dirigible.sheet.worksheet.Worksheet import A1 [as 别名]
    def test_setattr_should_delegate_to_setitem_if_attr_name_is_valid_cell_name(
        self, mock_name_to_coords
    ):
        def name_to_coords(name):
            if name == 'A1':
                return (2, 3)
            else:
                return None
        mock_name_to_coords.side_effect = name_to_coords

        ws = Worksheet()
        ws.__setitem__ = Mock()

        ws.A1 = 23

        self.assertEquals( ws.__setitem__.call_args_list, [(((2, 3), 23), {})] )
开发者ID:bwhmather,项目名称:dirigible-spreadsheet,代码行数:18,代码来源:test_worksheet.py


注:本文中的dirigible.sheet.worksheet.Worksheet.A1方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。