Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

[1LP][RFR][NOTEST] Add manual case for BZ 1595259 #8680

Merged
merged 2 commits into from
Apr 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions cfme/tests/generic_objects/test_instances.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,3 +254,30 @@ def test_generic_objects_tag_rest(appliance, generic_object, tags):
generic_object.remove_tag(tag)
tag_available = generic_object.get_tags()
assert tag.id not in [t.id for t in tag_available]


@pytest.mark.manual
@pytest.mark.ignore_stream("5.10")
def test_import_export_generic_object():
"""
Bugzilla:
1595259

Polarion:
john-dupuy marked this conversation as resolved.
Show resolved Hide resolved
assignee: jdupuy
initialEstimate: 1/6h
caseimportance: high
caseposneg: positive
testtype: functional
startsin: 5.11
casecomponent: GenericObjects
testSteps:
1. Import a generic object yaml
2. Create a generic object
3. Export a generic object
expectedResults:
1. The generic object should be present in CFME
2.
3. The generic object should be exported to a yaml file
"""
pass