Situation
Given the following test suite:
*** Settings ***
Library EggplantLibrary suite=${CURDIR}/eggplant/suite1.suite AS Suite1Library
Library EggplantLibrary suite=${CURDIR}/other_team/eggplant/suite2.suite AS Suite2Library
*** Test Cases ***
Demo
Connect Sut ${some_param}
Calling Connect Sut fails, because the keyword exists in both EggplantLibrary instances.
Expected
I would expect the static keywords to be available only once. I like to have the cusomt library names as domain prefixes for eggplant scripts:
*** Settings ***
Library EggplantLibrary suite=${CURDIR}/eggplant/suite1.suite AS DogLibrary
Library EggplantLibrary suite=${CURDIR}/other_team/eggplant/suite2.suite AS CatLibrary
*** Test Cases ***
Demo
Connect SUT ${some_param}
DogLibrary.My eggplant Script
CatLibrary.Other eggplant Script
Situation
Given the following test suite:
Calling
Connect Sutfails, because the keyword exists in both EggplantLibrary instances.Expected
I would expect the static keywords to be available only once. I like to have the cusomt library names as domain prefixes for eggplant scripts: