diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-02 18:07:42 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-02 18:07:42 +0000 |
commit | 7b52c7cb634ef7047d30b0337fe477bcdcedf41d (patch) | |
tree | 374ca9e908204488422046f10e340d1500780362 /spec/models/wiki_page_spec.rb | |
parent | b375c6c05fbd03aea33a9ee9f82e678bdaa8c3cc (diff) | |
download | gitlab-ce-7b52c7cb634ef7047d30b0337fe477bcdcedf41d.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/models/wiki_page_spec.rb')
-rw-r--r-- | spec/models/wiki_page_spec.rb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/spec/models/wiki_page_spec.rb b/spec/models/wiki_page_spec.rb index be5479cfc11..8ed7abc968b 100644 --- a/spec/models/wiki_page_spec.rb +++ b/spec/models/wiki_page_spec.rb @@ -192,16 +192,17 @@ describe WikiPage do expect(subject).not_to be_valid expect(subject.errors[:title]).to contain_exactly( - "exceeds the limit of #{max_title} bytes for page titles" + "exceeds the limit of #{max_title} bytes" ) end it 'rejects directories exceeding the limit' do - subject.title = invalid_directory + '/foo' + subject.title = "#{invalid_directory}/#{invalid_directory}2/foo" expect(subject).not_to be_valid expect(subject.errors[:title]).to contain_exactly( - "exceeds the limit of #{max_directory} bytes for directory names" + "exceeds the limit of #{max_directory} bytes for directory name \"#{invalid_directory}\"", + "exceeds the limit of #{max_directory} bytes for directory name \"#{invalid_directory}2\"" ) end @@ -210,8 +211,8 @@ describe WikiPage do expect(subject).not_to be_valid expect(subject.errors[:title]).to contain_exactly( - "exceeds the limit of #{max_title} bytes for page titles", - "exceeds the limit of #{max_directory} bytes for directory names" + "exceeds the limit of #{max_title} bytes", + "exceeds the limit of #{max_directory} bytes for directory name \"#{invalid_directory}\"" ) end end |