diff options
author | Andrey Kumanyaev <me@zzet.org> | 2013-01-23 20:42:38 +0400 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-01-24 22:31:48 +0200 |
commit | a5ce8696a6aa5a3a588fc618d8c959ce6c687310 (patch) | |
tree | 888f733d4265b2ce5ab91cefb7c952eb58b5e80b | |
parent | d721863382b3e2cedae03e8f235809eb409224c0 (diff) | |
download | gitlab-ce-a5ce8696a6aa5a3a588fc618d8c959ce6c687310.tar.gz |
remove unused autogenerated files
48 files changed, 0 insertions, 518 deletions
diff --git a/app/assets/javascripts/admin/teams/members.js.coffee b/app/assets/javascripts/admin/teams/members.js.coffee deleted file mode 100644 index 761567942fc..00000000000 --- a/app/assets/javascripts/admin/teams/members.js.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ diff --git a/app/assets/javascripts/admin/teams/projects.js.coffee b/app/assets/javascripts/admin/teams/projects.js.coffee deleted file mode 100644 index 761567942fc..00000000000 --- a/app/assets/javascripts/admin/teams/projects.js.coffee +++ /dev/null @@ -1,3 +0,0 @@ -# Place all the behaviors and hooks related to the matching controller here. -# All this logic will automatically be available in application.js. -# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ diff --git a/app/assets/stylesheets/admin/teams/members.css.scss b/app/assets/stylesheets/admin/teams/members.css.scss deleted file mode 100644 index 47c2273c1c2..00000000000 --- a/app/assets/stylesheets/admin/teams/members.css.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Admin::Teams::Members controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/assets/stylesheets/admin/teams/projects.css.scss b/app/assets/stylesheets/admin/teams/projects.css.scss deleted file mode 100644 index e6a6ec39043..00000000000 --- a/app/assets/stylesheets/admin/teams/projects.css.scss +++ /dev/null @@ -1,3 +0,0 @@ -// Place all the styles related to the Admin::Teams::Projects controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ 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 |