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
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-11-28 21:26:21 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-11-28 21:26:21 +0400
commit2e07865f16f96bc4706758cc5f2634574d38be37 (patch)
tree7189c0c90b1ba9b391bcbd5fa1f8ae7304a8ec3f /features
parent20bcbc195625e75f97a9b01c84e8d4e15af00d4c (diff)
parent68726c5bb4b2fed89e9bce9de76e383eccb0a365 (diff)
Merge remote-tracking branch 'origin/side-by-side'
Conflicts: CHANGELOG Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'features')
-rw-r--r--features/project/commits/commits.feature8
-rw-r--r--features/steps/project/project_browse_commits.rb12
2 files changed, 10 insertions, 10 deletions
diff --git a/features/project/commits/commits.feature b/features/project/commits/commits.feature
index 97113871a0a..cbe8b321507 100644
--- a/features/project/commits/commits.feature
+++ b/features/project/commits/commits.feature
@@ -14,12 +14,12 @@ Feature: Project Browse commits
Scenario: I browse commit from list
Given I click on commit link
Then I see commit info
- And I see parallel diff button
+ And I see side-by-side diff button
- Scenario: I browse commit with parallel diff view
+ Scenario: I browse commit with side-by-side diff view
Given I click on commit link
- And I click parallel diff button
- Then I see unified diff button
+ And I click side-by-side diff button
+ Then I see inline diff button
Scenario: I compare refs
Given I visit compare refs page
diff --git a/features/steps/project/project_browse_commits.rb b/features/steps/project/project_browse_commits.rb
index 17c51dc9a96..d667b58240f 100644
--- a/features/steps/project/project_browse_commits.rb
+++ b/features/steps/project/project_browse_commits.rb
@@ -89,16 +89,16 @@ class ProjectBrowseCommits < Spinach::FeatureSteps
links[1]['href'].should =~ %r{blob/cc1ba255d6c5ffdce87a357ba7ccc397a4f4026b}
end
- Given 'I click parallel diff button' do
- click_link "Parallel Diff"
+ Given 'I click side-by-side diff button' do
+ click_link "Side-by-side Diff"
end
- Then 'I see parallel diff button' do
- page.should have_content "Parallel Diff"
+ Then 'I see side-by-side diff button' do
+ page.should have_content "Side-by-side Diff"
end
- Then 'I see unified diff button' do
- page.should have_content "Unified Diff"
+ Then 'I see inline diff button' do
+ page.should have_content "Inline Diff"
end
end