Search⌘ K

Templating

Explore how to apply property-based testing to email templating in Erlang. Understand how to write properties for generating birthday email texts, validate dynamic fields, and ensure robust unit testing without sending actual emails.

We'll cover the following...

Our last task before tying it all up is templating. This will be a simple section with limited tests, but we’ll still manage with properties. The requirement is straightforward. Send an email with the text:

Happy birthday, dear $first_name!.

The tests

The function should take one employee term, ...