diff options
author | Robert Speicher <rspeicher@gmail.com> | 2019-08-09 17:53:14 +0000 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2019-08-09 17:53:14 +0000 |
commit | 4cbed002059ea73cb738ce5617097fd75a25d792 (patch) | |
tree | 670b07342ddeeb92223c40b4c646a294b17f6f7f | |
parent | 668e942e9e26db357ead1655562b3796ff2c12a7 (diff) | |
parent | 53fb5a0a9b02d8d500fcd70996a5d8b01f581d8f (diff) | |
download | gitlab-ce-4cbed002059ea73cb738ce5617097fd75a25d792.tar.gz |
Merge branch 'ee-spec-differences' into 'master'
Remove duplicate project tree specs
See merge request gitlab-org/gitlab-ee!15083
-rw-r--r-- | spec/lib/gitlab/import_export/project_tree_restorer_spec.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/spec/lib/gitlab/import_export/project_tree_restorer_spec.rb b/spec/lib/gitlab/import_export/project_tree_restorer_spec.rb index 09d1d873eec..baec24590b4 100644 --- a/spec/lib/gitlab/import_export/project_tree_restorer_spec.rb +++ b/spec/lib/gitlab/import_export/project_tree_restorer_spec.rb @@ -264,14 +264,6 @@ describe Gitlab::ImportExport::ProjectTreeRestorer do expect(CommitStatus.all).to all(have_attributes(pipeline_id: a_value > 0)) end end - - it 'has issue boards' do - expect(Project.find_by_path('project').boards.count).to eq(1) - end - - it 'has lists associated with the issue board' do - expect(Project.find_by_path('project').boards.find_by_name('TestBoardABC').lists.count).to eq(3) - end end end |