Trim WebHookUserSerializer.

This commit is contained in:
Guo Xiang Tan
2018-05-21 11:25:01 +08:00
parent 60e7b13f59
commit 00c6b078e3
3 changed files with 62 additions and 6 deletions

View File

@ -18,4 +18,21 @@ RSpec.describe WebHookUserSerializer do
expect(payload[:email]).to eq(user.email)
expect(payload[:external_id]).to eq('12345')
end
it 'should only include the required keys' do
count = serializer.as_json.keys.count
difference = count - 42
expect(difference).to eq(0), lambda {
message = ""
if difference < 0
message << "#{difference * -1} key(s) have been removed from this serializer."
else
message << "#{difference} key(s) have been added to this serializer."
end
message << "\nPlease verify if those key(s) are required as part of the web hook's payload."
}
end
end