Fix observer test
This commit is contained in:
parent
0523b4265b
commit
d8f6d38d39
|
@ -13,7 +13,7 @@ describe UserObserver do
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when a new user is created' do
|
context 'when a new user is created' do
|
||||||
let(:user) { double(:user, id: 42, password: 'P@ssword!') }
|
let(:user) { double(:user, id: 42, password: 'P@ssword!', name: 'John', email: 'u@mail.local') }
|
||||||
let(:notification) { double :notification }
|
let(:notification) { double :notification }
|
||||||
|
|
||||||
it 'sends an email' do
|
it 'sends an email' do
|
||||||
|
@ -22,5 +22,10 @@ describe UserObserver do
|
||||||
|
|
||||||
subject.after_create(user)
|
subject.after_create(user)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it 'trigger logger' do
|
||||||
|
Gitlab::AppLogger.should_receive(:info)
|
||||||
|
subject.after_create(user)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue