From 451127f207d729b6df588b16d8dda3d4add49698 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 19 May 2018 00:10:57 +0100 Subject: [PATCH] Add Drupal Dev Days talk --- app/config/sculpin_site.yml | 5 +++++ source/_talks/tdd-test-driven-drupal.md | 3 +++ 2 files changed, 8 insertions(+) diff --git a/app/config/sculpin_site.yml b/app/config/sculpin_site.yml index ae85c057..bccd50bd 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 10f2beb1..de55cd29 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.