diff --git a/app/config/sculpin_site.yml b/app/config/sculpin_site.yml index ae85c0571..bccd50bd8 100644 --- a/app/config/sculpin_site.yml +++ b/app/config/sculpin_site.yml @@ -94,6 +94,11 @@ events: location: Bristol, UK website: https://www.drupalbristol.org.uk + drupal-dev-days-2018: + name: Drupal Dev Days 2018 + location: Lisbon, Portugal + website: http://lisbon2018.drupaldays.org + drupal-somerset: name: Drupal Somerset location: Glastonbury, UK diff --git a/source/_talks/tdd-test-driven-drupal.md b/source/_talks/tdd-test-driven-drupal.md index 10f2beb12..de55cd292 100644 --- a/source/_talks/tdd-test-driven-drupal.md +++ b/source/_talks/tdd-test-driven-drupal.md @@ -29,6 +29,9 @@ events: date: '2017-11-22' - event: drupal-somerset date: '2018-06-14' + - event: drupal-dev-days-2018 + date: '2018-07-05' + time: '12:15 - 13:00' --- 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.