Shorter names

This commit is contained in:
Oliver Davies 2017-03-18 23:10:40 +00:00
parent 62706f2797
commit 05ee0f7cad
9 changed files with 25 additions and 25 deletions

View file

@ -2,11 +2,11 @@
title: Test Driven Drupal Development with SimpleTest and PHPUnit
type: Talk
slides:
url: https://speakerdeck.com/opdavies/test-driven-drupal-development-with-simpletest-and-phpunit-drupalcamp-london-2017
url: https://speakerdeck.com/opdavies/test-driven-drupal-development-with-simpletest-and-phpunit-drupalcamp-london-17
embed: <script async class="speakerdeck-embed" data-id="4f12722ed400468b93ebb32a23b3c757" data-ratio="1.37081659973226" src="//speakerdeck.com/assets/embed.js"></script>
tags: [drupalcamp, simpletest, phpunit, testing]
events:
- { id: drupalcamp-london-2017, date: '2017-03-04' }
- { id: drupalcamp-london-17, date: '2017-03-04' }
---
Testing is important. Why? It allows developers to add new features and edit and refactor existing code without the worry of adding regressions, reduces the reliance on manual testing to discover bugs, and by taking a test driven approach, your implementation code is leaner as you only write what is needed for your tests to pass.