diff options
author | Francisco Javier López <fjlopez@gitlab.com> | 2018-11-07 08:01:59 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2018-11-07 08:01:59 +0000 |
commit | 8aae7405ee9947e5d1cabb42cab7b47cadf8d09e (patch) | |
tree | d98fbf6e229cd21bd0ca881e4c6d98a86ae68bad /spec/models/wiki_page_spec.rb | |
parent | 1b788c66a1b1861d8dcca14785d22c59e31713fd (diff) | |
download | gitlab-ce-8aae7405ee9947e5d1cabb42cab7b47cadf8d09e.tar.gz |
Fix bug with wiki page create message
Diffstat (limited to 'spec/models/wiki_page_spec.rb')
-rw-r--r-- | spec/models/wiki_page_spec.rb | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/spec/models/wiki_page_spec.rb b/spec/models/wiki_page_spec.rb index 821946a47e5..b87a2d871e5 100644 --- a/spec/models/wiki_page_spec.rb +++ b/spec/models/wiki_page_spec.rb @@ -126,23 +126,34 @@ describe WikiPage do end end - before do - @wiki_attr = { title: "Index", content: "Home Page", format: "markdown" } - end - describe "#create" do + let(:wiki_attr) do + { + title: "Index", + content: "Home Page", + format: "markdown", + message: 'Custom Commit Message' + } + end + after do destroy_page("Index") end context "with valid attributes" do it "saves the wiki page" do - subject.create(@wiki_attr) + subject.create(wiki_attr) expect(wiki.find_page("Index")).not_to be_nil end it "returns true" do - expect(subject.create(@wiki_attr)).to eq(true) + expect(subject.create(wiki_attr)).to eq(true) + end + + it 'saves the wiki page with message' do + subject.create(wiki_attr) + + expect(wiki.find_page("Index").message).to eq 'Custom Commit Message' end end end |