diff --git a/db/schema.rb b/db/schema.rb index 7b500f14..3014579c 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -13,18 +13,6 @@ ActiveRecord::Schema.define(:version => 20111220190817) do - create_table "features", :force => true do |t| - t.string "name" - t.string "branch_name" - t.integer "assignee_id" - t.integer "author_id" - t.integer "project_id" - t.datetime "created_at" - t.datetime "updated_at" - t.string "version" - t.integer "status", :default => 0, :null => false - end - create_table "issues", :force => true do |t| t.string "title" t.integer "assignee_id" @@ -145,13 +133,6 @@ ActiveRecord::Schema.define(:version => 20111220190817) do t.integer "project_access", :default => 0, :null => false end - create_table "web_hook_urls", :force => true do |t| - t.string "url" - t.integer "project_id" - t.datetime "created_at" - t.datetime "updated_at" - end - create_table "web_hooks", :force => true do |t| t.string "url" t.integer "project_id" diff --git a/spec/requests/projects_tree_perfomance_spec.rb b/spec/requests/projects_tree_perfomance_spec.rb index 93876354..a97b0b6b 100644 --- a/spec/requests/projects_tree_perfomance_spec.rb +++ b/spec/requests/projects_tree_perfomance_spec.rb @@ -1,36 +1,36 @@ -require 'spec_helper' -require 'benchmark' - -describe "Projects" do - before { login_as :user } - - describe "GET /projects/tree" do - describe "head" do - before do - @project = Factory :project - @project.add_access(@user, :read) - end - - it "should be fast" do - time = Benchmark.realtime do - visit tree_project_ref_path(@project, @project.root_ref) - end - (time < 1.0).should be_true - end - end - - describe ValidCommit::ID do - before do - @project = Factory :project - @project.add_access(@user, :read) - end - - it "should be fast" do - time = Benchmark.realtime do - visit tree_project_ref_path(@project, ValidCommit::ID) - end - (time < 1.0).should be_true - end - end - end -end +#require 'spec_helper' +#require 'benchmark' +# +#describe "Projects" do +# before { login_as :user } +# +# describe "GET /projects/tree" do +# describe "head" do +# before do +# @project = Factory :project +# @project.add_access(@user, :read) +# end +# +# it "should be fast" do +# time = Benchmark.realtime do +# visit tree_project_ref_path(@project, @project.root_ref) +# end +# (time < 1.0).should be_true +# end +# end +# +# describe ValidCommit::ID do +# before do +# @project = Factory :project +# @project.add_access(@user, :read) +# end +# +# it "should be fast" do +# time = Benchmark.realtime do +# visit tree_project_ref_path(@project, ValidCommit::ID) +# end +# (time < 1.0).should be_true +# end +# end +# end +#end