Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
drupal.org
realname
Commits
1511e5c1
Commit
1511e5c1
authored
Jul 03, 2016
by
hass
Browse files
Fix tests
parent
f2e3b9cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/realname.test
View file @
1511e5c1
...
...
@@ -110,11 +110,13 @@ class RealnameBasicTest extends DrupalWebTestCase {
$this
->
assertResponse
(
200
);
$this
->
drupalGet
(
'admin/config/people/accounts/fields'
);
$this
->
assertResponse
(
403
);
$this
->
assertResponse
(
200
);
$this
->
assertTitle
(
'Account settings | Drupal'
);
$this
->
assertNoRaw
(
'Real name'
,
'[testRealnameManageDisplay]: Real name field not shown in manage fields list.'
);
$this
->
drupalGet
(
'admin/config/people/accounts/display'
);
$this
->
assertResponse
(
200
);
$this
->
assertTitle
(
'Account settings | Drupal'
);
$this
->
assertRaw
(
'Real name'
,
'[testRealnameManageDisplay]: Real name field shown in manage display.'
);
$this
->
drupalGet
(
'user/'
.
$this
->
admin_user
->
uid
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment