OSDN Git Service

Few fixes to spinach tests
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Tue, 27 Aug 2013 10:49:29 +0000 (13:49 +0300)
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Tue, 27 Aug 2013 10:49:29 +0000 (13:49 +0300)
app/views/groups/_projects.html.haml
features/steps/dashboard/dashboard.rb
features/steps/group/group.rb

index cbad2e3..16a3c60 100644 (file)
@@ -3,9 +3,9 @@
     Projects (#{projects.count})
     - if can? current_user, :manage_group, @group
       %span.pull-right
-        = link_to new_project_path(namespace_id: @group.id), class: "btn" do
+        = link_to new_project_path(namespace_id: @group.id), class: "btn btn-new" do
           %i.icon-plus
-          New Project
+          New project
   %ul.well-list
     - if projects.blank?
       %p.nothing_here_message This groups has no projects yet
index 596b5a7..5baf4e7 100644 (file)
@@ -4,7 +4,7 @@ class Dashboard < Spinach::FeatureSteps
   include SharedProject
 
   Then 'I should see "New Project" link' do
-    page.should have_link "New Project"
+    page.should have_link "New project"
   end
 
   Then 'I should see "Shop" project link' do
index 6f18f61..45dda6f 100644 (file)
@@ -67,7 +67,7 @@ class Groups < Spinach::FeatureSteps
   end
 
   When 'I click new group link' do
-    click_link "New Group"
+    click_link "New group"
   end
 
   And 'submit form with new group info' do