Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorAndrey Kumanyaev <me@zzet.org>2013-01-23 20:42:38 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-25 00:31:48 +0400
commita5ce8696a6aa5a3a588fc618d8c959ce6c687310 (patch)
tree888f733d4265b2ce5ab91cefb7c952eb58b5e80b /spec
parentd721863382b3e2cedae03e8f235809eb409224c0 (diff)
remove unused autogenerated files
Diffstat (limited to 'spec')
-rw-r--r--spec/controllers/admin/projects/members_controller_spec.rb26
-rw-r--r--spec/controllers/admin/teams/members_controller_spec.rb40
-rw-r--r--spec/controllers/admin/teams/projects_controller_spec.rb40
-rw-r--r--spec/controllers/admin/teams_controller_spec.rb47
-rw-r--r--spec/controllers/teams/members_controller_spec.rb47
-rw-r--r--spec/controllers/teams/projects_controller_spec.rb47
-rw-r--r--spec/controllers/teams_controller_spec.rb54
-rw-r--r--spec/helpers/admin/teams/members_helper_spec.rb15
-rw-r--r--spec/helpers/admin/teams/projects_helper_spec.rb15
-rw-r--r--spec/views/admin/teams/create.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/destroy.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/edit.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/index.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/members/create.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/members/destroy.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/members/edit.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/members/new.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/members/update.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/projects/create.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/projects/destroy.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/projects/edit.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/projects/new.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/projects/update.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/show.html.haml_spec.rb5
-rw-r--r--spec/views/admin/teams/update.html.haml_spec.rb5
-rw-r--r--spec/views/teams/create.html.haml_spec.rb5
-rw-r--r--spec/views/teams/destroy.html.haml_spec.rb5
-rw-r--r--spec/views/teams/edit.html.haml_spec.rb5
-rw-r--r--spec/views/teams/index.html.haml_spec.rb5
-rw-r--r--spec/views/teams/members/create.html.haml_spec.rb5
-rw-r--r--spec/views/teams/members/destroy.html.haml_spec.rb5
-rw-r--r--spec/views/teams/members/edit.html.haml_spec.rb5
-rw-r--r--spec/views/teams/members/index.html.haml_spec.rb5
-rw-r--r--spec/views/teams/members/new.html.haml_spec.rb5
-rw-r--r--spec/views/teams/members/update.html.haml_spec.rb5
-rw-r--r--spec/views/teams/new.html.haml_spec.rb5
-rw-r--r--spec/views/teams/projects/create.html.haml_spec.rb5
-rw-r--r--spec/views/teams/projects/destroy.html.haml_spec.rb5
-rw-r--r--spec/views/teams/projects/edit.html.haml_spec.rb5
-rw-r--r--spec/views/teams/projects/index.html.haml_spec.rb5
-rw-r--r--spec/views/teams/projects/new.html.haml_spec.rb5
-rw-r--r--spec/views/teams/projects/update.html.haml_spec.rb5
-rw-r--r--spec/views/teams/show.html.haml_spec.rb5
-rw-r--r--spec/views/teams/update.html.haml_spec.rb5
44 files changed, 0 insertions, 506 deletions
diff --git a/spec/controllers/admin/projects/members_controller_spec.rb b/spec/controllers/admin/projects/members_controller_spec.rb
deleted file mode 100644
index 73625e33d70..00000000000
--- a/spec/controllers/admin/projects/members_controller_spec.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-require 'spec_helper'
-
-describe Admin::Projects::MembersController do
-
- describe "GET 'edit'" do
- it "returns http success" do
- get 'edit'
- response.should be_success
- end
- end
-
- describe "GET 'update'" do
- it "returns http success" do
- get 'update'
- response.should be_success
- end
- end
-
- describe "GET 'destroy'" do
- it "returns http success" do
- get 'destroy'
- response.should be_success
- end
- end
-
-end
diff --git a/spec/controllers/admin/teams/members_controller_spec.rb b/spec/controllers/admin/teams/members_controller_spec.rb
deleted file mode 100644
index a9e41be59f7..00000000000
--- a/spec/controllers/admin/teams/members_controller_spec.rb
+++ /dev/null
@@ -1,40 +0,0 @@
-require 'spec_helper'
-
-describe Admin::Teams::MembersController do
-
- describe "GET 'new'" do
- it "returns http success" do
- get 'new'
- response.should be_success
- end
- end
-
- describe "GET 'create'" do
- it "returns http success" do
- get 'create'
- response.should be_success
- end
- end
-
- describe "GET 'edit'" do
- it "returns http success" do
- get 'edit'
- response.should be_success
- end
- end
-
- describe "GET 'update'" do
- it "returns http success" do
- get 'update'
- response.should be_success
- end
- end
-
- describe "GET 'destroy'" do
- it "returns http success" do
- get 'destroy'
- response.should be_success
- end
- end
-
-end
diff --git a/spec/controllers/admin/teams/projects_controller_spec.rb b/spec/controllers/admin/teams/projects_controller_spec.rb
deleted file mode 100644
index 7fe6ee0ca26..00000000000
--- a/spec/controllers/admin/teams/projects_controller_spec.rb
+++ /dev/null
@@ -1,40 +0,0 @@
-require 'spec_helper'
-
-describe Admin::Teams::ProjectsController do
-
- describe "GET 'new'" do
- it "returns http success" do
- get 'new'
- response.should be_success
- end
- end
-
- describe "GET 'create'" do
- it "returns http success" do
- get 'create'
- response.should be_success
- end
- end
-
- describe "GET 'edit'" do
- it "returns http success" do
- get 'edit'
- response.should be_success
- end
- end
-
- describe "GET 'update'" do
- it "returns http success" do
- get 'update'
- response.should be_success
- end
- end
-
- describe "GET 'destroy'" do
- it "returns http success" do
- get 'destroy'
- response.should be_success
- end
- end
-
-end
diff --git a/spec/controllers/admin/teams_controller_spec.rb b/spec/controllers/admin/teams_controller_spec.rb
deleted file mode 100644
index 02d8f86a79d..00000000000
--- a/spec/controllers/admin/teams_controller_spec.rb
+++ /dev/null
@@ -1,47 +0,0 @@
-require 'spec_helper'
-
-describe Admin::TeamsController do
-
- describe "GET 'index'" do
- it "returns http success" do
- get 'index'
- response.should be_success
- end
- end
-
- describe "GET 'show'" do
- it "returns http success" do
- get 'show'
- response.should be_success
- end
- end
-
- describe "GET 'create'" do
- it "returns http success" do
- get 'create'
- response.should be_success
- end
- end
-
- describe "GET 'edit'" do
- it "returns http success" do
- get 'edit'
- response.should be_success
- end
- end
-
- describe "GET 'update'" do
- it "returns http success" do
- get 'update'
- response.should be_success
- end
- end
-
- describe "GET 'destroy'" do
- it "returns http success" do
- get 'destroy'
- response.should be_success
- end
- end
-
-end
diff --git a/spec/controllers/teams/members_controller_spec.rb b/spec/controllers/teams/members_controller_spec.rb
deleted file mode 100644
index e1ac558a6cd..00000000000
--- a/spec/controllers/teams/members_controller_spec.rb
+++ /dev/null
@@ -1,47 +0,0 @@
-require 'spec_helper'
-
-describe Teams::MembersController do
-
- describe "GET 'index'" do
- it "returns http success" do
- get 'index'
- response.should be_success
- end
- end
-
- describe "GET 'new'" do
- it "returns http success" do
- get 'new'
- response.should be_success
- end
- end
-
- describe "GET 'create'" do
- it "returns http success" do
- get 'create'
- response.should be_success
- end
- end
-
- describe "GET 'edit'" do
- it "returns http success" do
- get 'edit'
- response.should be_success
- end
- end
-
- describe "GET 'update'" do
- it "returns http success" do
- get 'update'
- response.should be_success
- end
- end
-
- describe "GET 'destroy'" do
- it "returns http success" do
- get 'destroy'
- response.should be_success
- end
- end
-
-end
diff --git a/spec/controllers/teams/projects_controller_spec.rb b/spec/controllers/teams/projects_controller_spec.rb
deleted file mode 100644
index b379c3721bb..00000000000
--- a/spec/controllers/teams/projects_controller_spec.rb
+++ /dev/null
@@ -1,47 +0,0 @@
-require 'spec_helper'
-
-describe Teams::ProjectsController do
-
- describe "GET 'index'" do
- it "returns http success" do
- get 'index'
- response.should be_success
- end
- end
-
- describe "GET 'new'" do
- it "returns http success" do
- get 'new'
- response.should be_success
- end
- end
-
- describe "GET 'create'" do
- it "returns http success" do
- get 'create'
- response.should be_success
- end
- end
-
- describe "GET 'edit'" do
- it "returns http success" do
- get 'edit'
- response.should be_success
- end
- end
-
- describe "GET 'update'" do
- it "returns http success" do
- get 'update'
- response.should be_success
- end
- end
-
- describe "GET 'destroy'" do
- it "returns http success" do
- get 'destroy'
- response.should be_success
- end
- end
-
-end
diff --git a/spec/controllers/teams_controller_spec.rb b/spec/controllers/teams_controller_spec.rb
deleted file mode 100644
index 923261fce9c..00000000000
--- a/spec/controllers/teams_controller_spec.rb
+++ /dev/null
@@ -1,54 +0,0 @@
-require 'spec_helper'
-
-describe TeamsController do
-
- describe "GET 'index'" do
- it "returns http success" do
- get 'index'
- response.should be_success
- end
- end
-
- describe "GET 'show'" do
- it "returns http success" do
- get 'show'
- response.should be_success
- end
- end
-
- describe "GET 'new'" do
- it "returns http success" do
- get 'new'
- response.should be_success
- end
- end
-
- describe "GET 'edit'" do
- it "returns http success" do
- get 'edit'
- response.should be_success
- end
- end
-
- describe "GET 'update'" do
- it "returns http success" do
- get 'update'
- response.should be_success
- end
- end
-
- describe "GET 'create'" do
- it "returns http success" do
- get 'create'
- response.should be_success
- end
- end
-
- describe "GET 'destroy'" do
- it "returns http success" do
- get 'destroy'
- response.should be_success
- end
- end
-
-end
diff --git a/spec/helpers/admin/teams/members_helper_spec.rb b/spec/helpers/admin/teams/members_helper_spec.rb
deleted file mode 100644
index ceef71c0be6..00000000000
--- a/spec/helpers/admin/teams/members_helper_spec.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require 'spec_helper'
-
-# Specs in this file have access to a helper object that includes
-# the Admin::Teams::MembersHelper. For example:
-#
-# describe Admin::Teams::MembersHelper do
-# describe "string concat" do
-# it "concats two strings with spaces" do
-# helper.concat_strings("this","that").should == "this that"
-# end
-# end
-# end
-describe Admin::Teams::MembersHelper do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/helpers/admin/teams/projects_helper_spec.rb b/spec/helpers/admin/teams/projects_helper_spec.rb
deleted file mode 100644
index 1c98d23cdb7..00000000000
--- a/spec/helpers/admin/teams/projects_helper_spec.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require 'spec_helper'
-
-# Specs in this file have access to a helper object that includes
-# the Admin::Teams::ProjectsHelper. For example:
-#
-# describe Admin::Teams::ProjectsHelper do
-# describe "string concat" do
-# it "concats two strings with spaces" do
-# helper.concat_strings("this","that").should == "this that"
-# end
-# end
-# end
-describe Admin::Teams::ProjectsHelper do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/create.html.haml_spec.rb b/spec/views/admin/teams/create.html.haml_spec.rb
deleted file mode 100644
index 27f57d89693..00000000000
--- a/spec/views/admin/teams/create.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "teams/create.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/destroy.html.haml_spec.rb b/spec/views/admin/teams/destroy.html.haml_spec.rb
deleted file mode 100644
index 87670e4dc66..00000000000
--- a/spec/views/admin/teams/destroy.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "teams/destroy.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/edit.html.haml_spec.rb b/spec/views/admin/teams/edit.html.haml_spec.rb
deleted file mode 100644
index 5180d713f7f..00000000000
--- a/spec/views/admin/teams/edit.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "teams/edit.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/index.html.haml_spec.rb b/spec/views/admin/teams/index.html.haml_spec.rb
deleted file mode 100644
index 7a0d69bd316..00000000000
--- a/spec/views/admin/teams/index.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "teams/index.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/members/create.html.haml_spec.rb b/spec/views/admin/teams/members/create.html.haml_spec.rb
deleted file mode 100644
index b6f817617e4..00000000000
--- a/spec/views/admin/teams/members/create.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "members/create.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/members/destroy.html.haml_spec.rb b/spec/views/admin/teams/members/destroy.html.haml_spec.rb
deleted file mode 100644
index 3ff1634461c..00000000000
--- a/spec/views/admin/teams/members/destroy.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "members/destroy.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/members/edit.html.haml_spec.rb b/spec/views/admin/teams/members/edit.html.haml_spec.rb
deleted file mode 100644
index 3e952e898a9..00000000000
--- a/spec/views/admin/teams/members/edit.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "members/edit.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/members/new.html.haml_spec.rb b/spec/views/admin/teams/members/new.html.haml_spec.rb
deleted file mode 100644
index f03eed1f29f..00000000000
--- a/spec/views/admin/teams/members/new.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "members/new.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/members/update.html.haml_spec.rb b/spec/views/admin/teams/members/update.html.haml_spec.rb
deleted file mode 100644
index 43b84bad99b..00000000000
--- a/spec/views/admin/teams/members/update.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "members/update.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/projects/create.html.haml_spec.rb b/spec/views/admin/teams/projects/create.html.haml_spec.rb
deleted file mode 100644
index 74c4ee2d837..00000000000
--- a/spec/views/admin/teams/projects/create.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "projects/create.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/projects/destroy.html.haml_spec.rb b/spec/views/admin/teams/projects/destroy.html.haml_spec.rb
deleted file mode 100644
index b3eee48f38b..00000000000
--- a/spec/views/admin/teams/projects/destroy.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "projects/destroy.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/projects/edit.html.haml_spec.rb b/spec/views/admin/teams/projects/edit.html.haml_spec.rb
deleted file mode 100644
index ef41b7b0814..00000000000
--- a/spec/views/admin/teams/projects/edit.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "projects/edit.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/projects/new.html.haml_spec.rb b/spec/views/admin/teams/projects/new.html.haml_spec.rb
deleted file mode 100644
index 9ee68e5ae05..00000000000
--- a/spec/views/admin/teams/projects/new.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "projects/new.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/projects/update.html.haml_spec.rb b/spec/views/admin/teams/projects/update.html.haml_spec.rb
deleted file mode 100644
index fdaafd3924b..00000000000
--- a/spec/views/admin/teams/projects/update.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "projects/update.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/show.html.haml_spec.rb b/spec/views/admin/teams/show.html.haml_spec.rb
deleted file mode 100644
index b7f7b669c2e..00000000000
--- a/spec/views/admin/teams/show.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "teams/show.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/admin/teams/update.html.haml_spec.rb b/spec/views/admin/teams/update.html.haml_spec.rb
deleted file mode 100644
index b28cfa4f699..00000000000
--- a/spec/views/admin/teams/update.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "teams/update.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/create.html.haml_spec.rb b/spec/views/teams/create.html.haml_spec.rb
deleted file mode 100644
index 27f57d89693..00000000000
--- a/spec/views/teams/create.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "teams/create.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/destroy.html.haml_spec.rb b/spec/views/teams/destroy.html.haml_spec.rb
deleted file mode 100644
index 87670e4dc66..00000000000
--- a/spec/views/teams/destroy.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "teams/destroy.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/edit.html.haml_spec.rb b/spec/views/teams/edit.html.haml_spec.rb
deleted file mode 100644
index 5180d713f7f..00000000000
--- a/spec/views/teams/edit.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "teams/edit.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/index.html.haml_spec.rb b/spec/views/teams/index.html.haml_spec.rb
deleted file mode 100644
index 7a0d69bd316..00000000000
--- a/spec/views/teams/index.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "teams/index.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/members/create.html.haml_spec.rb b/spec/views/teams/members/create.html.haml_spec.rb
deleted file mode 100644
index b6f817617e4..00000000000
--- a/spec/views/teams/members/create.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "members/create.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/members/destroy.html.haml_spec.rb b/spec/views/teams/members/destroy.html.haml_spec.rb
deleted file mode 100644
index 3ff1634461c..00000000000
--- a/spec/views/teams/members/destroy.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "members/destroy.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/members/edit.html.haml_spec.rb b/spec/views/teams/members/edit.html.haml_spec.rb
deleted file mode 100644
index 3e952e898a9..00000000000
--- a/spec/views/teams/members/edit.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "members/edit.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/members/index.html.haml_spec.rb b/spec/views/teams/members/index.html.haml_spec.rb
deleted file mode 100644
index 363430d769f..00000000000
--- a/spec/views/teams/members/index.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "members/index.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/members/new.html.haml_spec.rb b/spec/views/teams/members/new.html.haml_spec.rb
deleted file mode 100644
index f03eed1f29f..00000000000
--- a/spec/views/teams/members/new.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "members/new.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/members/update.html.haml_spec.rb b/spec/views/teams/members/update.html.haml_spec.rb
deleted file mode 100644
index 43b84bad99b..00000000000
--- a/spec/views/teams/members/update.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "members/update.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/new.html.haml_spec.rb b/spec/views/teams/new.html.haml_spec.rb
deleted file mode 100644
index 8ef621b708f..00000000000
--- a/spec/views/teams/new.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "teams/new.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/projects/create.html.haml_spec.rb b/spec/views/teams/projects/create.html.haml_spec.rb
deleted file mode 100644
index 74c4ee2d837..00000000000
--- a/spec/views/teams/projects/create.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "projects/create.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/projects/destroy.html.haml_spec.rb b/spec/views/teams/projects/destroy.html.haml_spec.rb
deleted file mode 100644
index b3eee48f38b..00000000000
--- a/spec/views/teams/projects/destroy.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "projects/destroy.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/projects/edit.html.haml_spec.rb b/spec/views/teams/projects/edit.html.haml_spec.rb
deleted file mode 100644
index ef41b7b0814..00000000000
--- a/spec/views/teams/projects/edit.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "projects/edit.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/projects/index.html.haml_spec.rb b/spec/views/teams/projects/index.html.haml_spec.rb
deleted file mode 100644
index 8cf0dbcd954..00000000000
--- a/spec/views/teams/projects/index.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "projects/index.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/projects/new.html.haml_spec.rb b/spec/views/teams/projects/new.html.haml_spec.rb
deleted file mode 100644
index 9ee68e5ae05..00000000000
--- a/spec/views/teams/projects/new.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "projects/new.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/projects/update.html.haml_spec.rb b/spec/views/teams/projects/update.html.haml_spec.rb
deleted file mode 100644
index fdaafd3924b..00000000000
--- a/spec/views/teams/projects/update.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "projects/update.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/show.html.haml_spec.rb b/spec/views/teams/show.html.haml_spec.rb
deleted file mode 100644
index b7f7b669c2e..00000000000
--- a/spec/views/teams/show.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "teams/show.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end
diff --git a/spec/views/teams/update.html.haml_spec.rb b/spec/views/teams/update.html.haml_spec.rb
deleted file mode 100644
index b28cfa4f699..00000000000
--- a/spec/views/teams/update.html.haml_spec.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'spec_helper'
-
-describe "teams/update.html.haml" do
- pending "add some examples to (or delete) #{__FILE__}"
-end