diff --git a/data/events.yml b/data/events.yml index afa00af9b..55fdc2edd 100644 --- a/data/events.yml +++ b/data/events.yml @@ -42,11 +42,14 @@ events: drupalcamp_london_17: name: DrupalCamp London 2017 location: London, UK - url: http://drupalcamp.london drupalcamp_london_18: name: DrupalCamp London 2018 location: London, UK + + drupalcamp_london_19: + name: DrupalCamp London 2019 + location: London, UK url: http://drupalcamp.london drupalcamp_north_15: diff --git a/source/_talks/drupal-8-php-libraries-drupalorg-api.md b/source/_talks/drupal-8-php-libraries-drupalorg-api.md index 00b0ee6d0..d7d643618 100644 --- a/source/_talks/drupal-8-php-libraries-drupalorg-api.md +++ b/source/_talks/drupal-8-php-libraries-drupalorg-api.md @@ -14,6 +14,9 @@ events: - event: drupal_bristol date: '2018-04-18' joindin: https://joind.in/talk/14851 + - event: drupalcamp_london_19 + date: '2019-03-01' + fuzzy_date: true --- A demo of some of the open source projects that I’ve been working on lately that are based on information from the Drupal.org API, including a PHP library for the API itself as well as some Drupal 8 modules that use it. diff --git a/source/_talks/tdd-test-driven-drupal.md b/source/_talks/tdd-test-driven-drupal.md index 0d7194953..219e95ff7 100644 --- a/source/_talks/tdd-test-driven-drupal.md +++ b/source/_talks/tdd-test-driven-drupal.md @@ -33,6 +33,9 @@ events: - event: drupal_dev_days_18 date: '2018-07-05' time: '12:15 - 13:00' + - event: drupalcamp_london_19 + date: '2019-03-01' + fuzzy_date: true --- {% block content %} 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.