Files
IfcOpenShell/src/blenderbim/test/bim/feature/context.feature
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
524 B
Gherkin
Raw Normal View History

2021-09-30 08:46:02 +10:00
@context
Feature: Context
Manages geometric representation contexts and subcontexts
Scenario: Add subcontext
Given an empty IFC project
When I press "bim.add_subcontext(context='Model', subcontext='Body', target_view='MODEL_VIEW')"
2021-09-30 08:46:02 +10:00
Then nothing happens
Scenario: Remove subcontext
Given an empty IFC project
When the variable "context" is "IfcStore.get_file().by_type('IfcGeometricRepresentationContext')[0].id()"
And I press "bim.remove_subcontext(context={context})"
2021-09-30 08:46:02 +10:00
Then nothing happens