aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-06-20 23:42:54 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-06-20 23:42:54 +0200
commit18bf45ab1b3f07fbed5c7d566766170ff0a71e8e (patch)
treee1e51f757365e99b3e5a2bc8530321b422bbe02a /tests/functional
parent3c38fcce40b28d7b67f4a9686be88044eda40b9a (diff)
parent51b4dc7077e40518307f726956ec49b73ca1a808 (diff)
downloadforums-18bf45ab1b3f07fbed5c7d566766170ff0a71e8e.tar
forums-18bf45ab1b3f07fbed5c7d566766170ff0a71e8e.tar.gz
forums-18bf45ab1b3f07fbed5c7d566766170ff0a71e8e.tar.bz2
forums-18bf45ab1b3f07fbed5c7d566766170ff0a71e8e.tar.xz
forums-18bf45ab1b3f07fbed5c7d566766170ff0a71e8e.zip
Merge pull request #2628 from Dragooon/ticket/12731
[ticket/12731] Add YouTube custom profile field * Dragooon/ticket/12731: [ticket/12731] Add functional test for youtube field [ticket/12731] Set field_active to 1 for YouTube field [ticket/12731] Add YouTube custom profile field Conflicts: phpBB/install/schemas/schema.json phpBB/install/schemas/schema_data.sql phpBB/language/en/memberlist.php tests/functional/ucp_profile_test.php
Diffstat (limited to 'tests/functional')
-rw-r--r--tests/functional/ucp_profile_test.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/functional/ucp_profile_test.php b/tests/functional/ucp_profile_test.php
index 46b67ff843..2d68704162 100644
--- a/tests/functional/ucp_profile_test.php
+++ b/tests/functional/ucp_profile_test.php
@@ -29,6 +29,7 @@ class phpbb_functional_ucp_profile_test extends phpbb_functional_test_case
'pf_phpbb_location' => 'Bertie“s Empire',
'pf_phpbb_skype' => 'phpbb.skype.account',
'pf_phpbb_twitter' => 'phpbb_twitter',
+ 'pf_phpbb_youtube' => 'phpbb.youtube',
));
$crawler = self::submit($form);
@@ -41,5 +42,6 @@ class phpbb_functional_ucp_profile_test extends phpbb_functional_test_case
$this->assertEquals('Bertie“s Empire', $form->get('pf_phpbb_location')->getValue());
$this->assertEquals('phpbb.skype.account', $form->get('pf_phpbb_skype')->getValue());
$this->assertEquals('phpbb_twitter', $form->get('pf_phpbb_twitter')->getValue());
+ $this->assertEquals('phpbb.youtube', $form->get('pf_phpbb_youtube')->getValue());
}
}