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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-04-14 12:36:53 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-04-14 12:36:53 +0400
commit86d7b4f152b806b0f53c801a88b7fba016943a94 (patch)
tree682a882405c6a84953ac7cfc90983b90f2a30ac2 /spec
parent95fde9bd7a1fb0a902c33f03f641909043df4125 (diff)
removed old spec
Diffstat (limited to 'spec')
-rw-r--r--spec/requests/dashboard_spec.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/spec/requests/dashboard_spec.rb b/spec/requests/dashboard_spec.rb
deleted file mode 100644
index cfdbb8d4729..00000000000
--- a/spec/requests/dashboard_spec.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-require 'spec_helper'
-describe "Dashboard" do
- before do
- @project = Factory :project
- @user = User.create(:email => "test917@mail.com",
- :name => "John Smith",
- :password => "123456",
- :password_confirmation => "123456")
- @project.add_access(@user, :read, :write)
- login_with(@user)
- end
-
- describe "GET /dashboard" do
- before do
- visit dashboard_path
- end
-
- it "should be on dashboard page" do
- current_path.should == dashboard_path
- end
-
- it "should have projects panel" do
- page.should have_content(@project.name)
- end
- end
-end