Commit d472810e authored by Sebastian Klier's avatar Sebastian Klier

formatting and test structure

parent a88f0a1f
......@@ -19,7 +19,7 @@ class SlackService
@wiki_page_url = obj_attr[:url]
@description = obj_attr[:content]
@action = \
@action =
case obj_attr[:action]
when "create"
"created"
......
class AddEventToServices < ActiveRecord::Migration
def change
add_column :services, :wiki_page_events, :boolean, :default => true
add_column :services, :wiki_page_events, :boolean, default: true
end
end
......@@ -11,11 +11,9 @@ describe SlackService::WikiPageMessage, models: true do
},
project_name: 'project_name',
project_url: 'somewhere.com',
object_attributes: {
title: 'Wiki page title',
url: 'url',
action: 'create',
content: 'Wiki page description'
}
}
......@@ -23,34 +21,53 @@ describe SlackService::WikiPageMessage, models: true do
let(:color) { '#345' }
context 'create' do
it 'returns a message regarding creation of pages' do
expect(subject.pretext).to eq(
'Test User created <url|wiki page> in <somewhere.com|project_name>: '\
'*Wiki page title*')
expect(subject.attachments).to eq([
{
text: "Wiki page description",
color: color,
}
])
describe '#pretext' do
context 'when :action == "create"' do
before { args[:object_attributes][:action] = 'create' }
it do
expect(pretext).to eq(
'Test User created <url|wiki page> in <somewhere.com|project_name>: '\
'*Wiki page title*')
end
end
context 'when :action == "update"' do
before { args[:object_attributes][:action] = 'update' }
it do
expect(pretext).to eq(
'Test User edited <url|wiki page> in <somewhere.com|project_name>: '\
'*Wiki page title*')
end
end
end
context 'update' do
before do
args[:object_attributes][:action] = 'update'
describe '#attachments' do
context 'when :action == "create"' do
before { args[:object_attributes][:action] = 'create' }
it do
expect(attachments).to eq([
{
text: "Wiki page description",
color: color,
}
])
end
end
it 'returns a message regarding updating of pages' do
expect(subject.pretext). to eq(
'Test User edited <url|wiki page> in <somewhere.com|project_name>: '\
'*Wiki page title*')
expect(subject.attachments).to eq([
{
text: "Wiki page description",
color: color,
}
])
context 'when :action == "update"' do
before { args[:object_attributes][:action] = 'update' }
it do
expect(attachments).to eq([
{
text: "Wiki page description",
color: color,
}
])
end
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment