2024-01-03 20:00:00 +00:00
|
|
|
---
|
|
|
|
title: Introduction to Automated Testing in Drupal email course
|
|
|
|
---
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2024-01-12 23:51:24 +00:00
|
|
|
Do you want to learn how to write automated tests and do test-driven development in Drupal?
|
|
|
|
|
|
|
|
Register below for my free 7-day email course, during which you'll learn to write a new Drupal module from scratch with automated tests.
|
|
|
|
|
|
|
|
Learn to test things like:
|
|
|
|
|
|
|
|
* Whether pages exist.
|
|
|
|
* Whether users can view specific pages based on their permissions.
|
|
|
|
* Whether certain content is visible on a page given particular circumstances.
|
2024-01-13 11:29:53 +00:00
|
|
|
* Refactoring code to test dedicated classes such as Repositories, Actions and Services.
|
2024-01-12 23:51:24 +00:00
|
|
|
|
|
|
|
{% include 'email-course-form.html.twig' %}
|
2024-01-03 20:00:00 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content_bottom %}
|
|
|
|
<div class="space-y-12">
|
|
|
|
{% include 'testimonials.html.twig' with {
|
|
|
|
names: [
|
2024-01-13 18:56:27 +00:00
|
|
|
"Matthieu Scarset",
|
2024-01-03 20:00:00 +00:00
|
|
|
"Mike Karthauser",
|
|
|
|
"Tawny Bartlett",
|
|
|
|
"Scott Euser",
|
|
|
|
]
|
|
|
|
} %}
|
|
|
|
|
2024-01-03 20:00:00 +00:00
|
|
|
{{ parent() }}
|
2024-01-03 20:00:00 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|