本文整理匯總了Python中oyProjectManager.models.project.Project.height方法的典型用法代碼示例。如果您正苦於以下問題:Python Project.height方法的具體用法?Python Project.height怎麽用?Python Project.height使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類oyProjectManager.models.project.Project
的用法示例。
在下文中一共展示了Project.height方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_passing_a_Project_instance_will_fill_the_interface_with_the_project
# 需要導入模塊: from oyProjectManager.models.project import Project [as 別名]
# 或者: from oyProjectManager.models.project.Project import height [as 別名]
def test_passing_a_Project_instance_will_fill_the_interface_with_the_project(self):
"""testing if passing a Project instance will fill the interface with
the data coming from the given Project instance
"""
new_client = Client(name='Client Agency 1', code='CA1')
new_client.save()
new_project = Project("Test Project")
new_project.client = new_client
new_project.width = 720
new_project.height = 576
new_project.pixel_aspect = 1.067
new_project.fps = 30
new_project.active = True
dialog = project_properties.MainDialog(project=new_project)
# now check if the interface is filled properly
self.assertEqual(
dialog.name_lineEdit.text(), new_project.name
)
self.assertEqual(
dialog.code_lineEdit.text(), new_project.code
)
# preset name
preset_name = dialog.resolution_comboBox.currentText()
self.assertEqual(
conf.resolution_presets[preset_name][0],
new_project.width
)
self.assertEqual(
conf.resolution_presets[preset_name][1],
new_project.height
)
self.assertEqual(
conf.resolution_presets[preset_name][2],
new_project.pixel_aspect
)
self.assertEqual(
dialog.fps_spinBox.value(), new_project.fps
)
self.assertEqual(
dialog.active_checkBox.isChecked(), True
)
# Advanced settings
self.assertEqual(
dialog.shot_number_prefix_lineEdit.text(),
new_project.shot_number_prefix
)
self.assertEqual(
dialog.shot_number_padding_spinBox.value(),
new_project.shot_number_padding
)
# self.assertEqual(
# dialog.revision_number_prefix_lineEdit.text(),
# new_project.rev_number_prefix
# )
# self.assertEqual(
# dialog.revision_number_padding_spinBox.value(),
# new_project.rev_number_padding
# )
# self.assertEqual(
# dialog.version_number_prefix_lineEdit.text(),
# new_project.ver_number_prefix
# )
# self.assertEqual(
# dialog.version_number_padding_spinBox.value(),
# new_project.ver_number_padding
# )
self.assertEqual(
dialog.structure_textEdit.toPlainText(),
new_project.structure
)