Project 'gitlab-org/gitlab-ce' was moved to 'gitlab-org/gitlab-foss'. Please update any links and bookmarks that may still have the old path.
QA: Separate tests for creating groups and projects
The discussion from !21302 (merged) should be addressed. It was about why a factory wasn't used to create a project. The problem was that with the changes the factory would create a group via the API, so there would be no test of creating a group via the UI.
There are at least two options:
- Make it possible to fabricate all dependencies via the UI, if desired
- Separate the UI tests for creating a group and creating a project
I'm in favor of option 2 because if would be good to have separate tests of those features. The current test of creating a project will fail if there's a problem creating a group, which isn't ideal.