From 3f4fac395bceefd4f60ecb7d8bc4cfe0f4fa464d Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 4 Mar 2017 23:39:17 +0000 Subject: [PATCH] Add slides --- ...etting-your-data-into-drupal-8-drupalcamp-london-2017.md | 6 +++--- ...iven-drupal-simpletest-phpunit-drupalcamp-london-2017.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/source/_talks/2017-03-04-getting-your-data-into-drupal-8-drupalcamp-london-2017.md b/source/_talks/2017-03-04-getting-your-data-into-drupal-8-drupalcamp-london-2017.md index 9d73cfed..a83f3557 100644 --- a/source/_talks/2017-03-04-getting-your-data-into-drupal-8-drupalcamp-london-2017.md +++ b/source/_talks/2017-03-04-getting-your-data-into-drupal-8-drupalcamp-london-2017.md @@ -3,9 +3,9 @@ title: Getting (Your Data) Into Drupal 8 location: DrupalCamp London 2017 logo: assets/images/talks/logos/drupalcamp-london-2017.png logo_link: http://drupalcamp.london/session/getting-your-data-drupal-8 -slides: ~ -slides_embed: ~ -tags: [] +slides: https://speakerdeck.com/opdavies/getting-your-data-into-drupal-8-drupal-bristol +slides_embed: +tags: [drupalcamp, migration, drupal-8] --- If you’ve moved a site from Drupal 6 to 7, the chances are that you’ve either used the upgrade path to update your old site in-place, or you built a new site from scratch and used the Migrate module from contrib to migrate your data from the old database. diff --git a/source/_talks/2017-03-04-test-driven-drupal-simpletest-phpunit-drupalcamp-london-2017.md b/source/_talks/2017-03-04-test-driven-drupal-simpletest-phpunit-drupalcamp-london-2017.md index 3e52fe70..e4971e0a 100644 --- a/source/_talks/2017-03-04-test-driven-drupal-simpletest-phpunit-drupalcamp-london-2017.md +++ b/source/_talks/2017-03-04-test-driven-drupal-simpletest-phpunit-drupalcamp-london-2017.md @@ -3,9 +3,9 @@ title: Test driven Drupal development with SimpleTest and PHPUnit location: DrupalCamp London 2017 logo: assets/images/talks/logos/drupalcamp-london-2017.png logo_link: http://drupalcamp.london/session/test-driven-drupal-development-simpletest-and-phpunit -slides: ~ -slides_embed: ~ -tags: [] +slides: https://speakerdeck.com/opdavies/test-driven-drupal-development-with-simpletest-and-phpunit-drupalcamp-london-2017 +slides_embed: +tags: [drupalcamp, simpletest, phpunit, testing] --- 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.