-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implement VerifySupervisorCanActionSettings(#1238)
- Loading branch information
1 parent
b44853c
commit 00071bb
Showing
8 changed files
with
215 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...atalogueCorePluginTestApp/test/functional/org/modelcatalogue/core/geb/FeedbackPage.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.modelcatalogue.core.geb | ||
|
||
import geb.Page | ||
|
||
class FeedbackPage extends Page { | ||
|
||
static url = '#/catalogue/feedback/all' | ||
|
||
static at = { title == 'Feedbacks' } | ||
|
||
static content = { | ||
nav { $('#topmenu', 0).module(NavModule) } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
ModelCatalogueCorePluginTestApp/test/functional/org/modelcatalogue/core/geb/LogsPage.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.modelcatalogue.core.geb | ||
|
||
import geb.Page | ||
|
||
class LogsPage extends Page { | ||
|
||
static url = 'logs/index' | ||
|
||
static at = { title == 'Logs' } | ||
|
||
static content = { | ||
nav { $('#topmenu', 0).module(NavModule) } | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...CorePluginTestApp/test/functional/org/modelcatalogue/core/geb/ReindexCataloguePage.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.modelcatalogue.core.geb | ||
|
||
import geb.Page | ||
|
||
class ReindexCataloguePage extends Page { | ||
|
||
static url = '/reindexCatalogue/index' | ||
|
||
static at = { title == 'Reindex Catalogue' } | ||
|
||
static content = { | ||
nav { $('#topmenu', 0).module(NavModule) } | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...orePluginTestApp/test/functional/org/modelcatalogue/core/geb/RelationshipTypesPage.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.modelcatalogue.core.geb | ||
|
||
import geb.Page | ||
|
||
class RelationshipTypesPage extends Page { | ||
|
||
static url = '/#/catalogue/relationshipType/all' | ||
|
||
static at = { title == 'Relationship Types' } | ||
|
||
static content = { | ||
nav { $('#topmenu', 0).module(NavModule) } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters