summaryrefslogtreecommitdiff
path: root/features/steps/project/commits/branches.rb
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2015-12-17 16:59:15 -0200
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2015-12-17 17:17:37 -0200
commit1757e6ef65a1cedbfe5d5b5da894d6d0d3d5ef16 (patch)
treeae3512b6b49c95451869d9e486d94155448bd3e3 /features/steps/project/commits/branches.rb
parentc91cf1f66b3ed4329b313b7b75fca816fc5c6076 (diff)
downloadgitlab-ce-1757e6ef65a1cedbfe5d5b5da894d6d0d3d5ef16.tar.gz
Add JS validation for invalid characters in branch name
More info about valid ref names: https://www.kernel.org/pub/software/scm/git/docs/git-check-ref-format.ht ml
Diffstat (limited to 'features/steps/project/commits/branches.rb')
-rw-r--r--features/steps/project/commits/branches.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/features/steps/project/commits/branches.rb b/features/steps/project/commits/branches.rb
index e9312e87637..109d031d446 100644
--- a/features/steps/project/commits/branches.rb
+++ b/features/steps/project/commits/branches.rb
@@ -61,7 +61,8 @@ class Spinach::Features::ProjectCommitsBranches < Spinach::FeatureSteps
end
step 'I should see new an error that branch is invalid' do
- expect(page).to have_content "Branch name can't contains space, '~', '^', ':', '?', '*', '[', '\', '..', '@{', and consecutive slashes, start with '/' or '.' or end in '/' or '.' or '.lock'"
+ expect(page).to have_content 'Branch name is invalid'
+ expect(page).to have_content "can't contains spaces"
end
step 'I should see new an error that ref is invalid' do