Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Platform
Commits
9f8d19ff
Commit
9f8d19ff
authored
Sep 24, 2014
by
Nicolas Widart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding more tests for the roles
parent
6299fa27
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
UrlTest.php
Tests/UrlTest.php
+44
-0
No files found.
Tests/UrlTest.php
View file @
9f8d19ff
...
...
@@ -35,4 +35,48 @@ class UrlTest extends \TestCase
$this
->
assertCount
(
1
,
$crawler
->
filter
(
'h1:contains("Edit User")'
));
}
/** @test */
public
function
userCreateShouldBeAccessible
()
{
$uri
=
'/'
.
Config
::
get
(
'core::core.admin-prefix'
)
.
'/users/create'
;
$crawler
=
$this
->
client
->
request
(
'GET'
,
$uri
);
$this
->
assertTrue
(
$this
->
client
->
getResponse
()
->
isOk
());
$this
->
assertCount
(
1
,
$crawler
->
filter
(
'h1:contains("New User")'
));
}
/** @test */
public
function
roleIndexShouldBeAccessible
()
{
$uri
=
'/'
.
Config
::
get
(
'core::core.admin-prefix'
)
.
'/roles'
;
$crawler
=
$this
->
client
->
request
(
'GET'
,
$uri
);
$this
->
assertTrue
(
$this
->
client
->
getResponse
()
->
isOk
());
$this
->
assertCount
(
1
,
$crawler
->
filter
(
'h1:contains("Roles")'
));
}
/** @test */
public
function
roleCreateShouldBeAccessible
()
{
$uri
=
'/'
.
Config
::
get
(
'core::core.admin-prefix'
)
.
'/roles/create'
;
$crawler
=
$this
->
client
->
request
(
'GET'
,
$uri
);
$this
->
assertTrue
(
$this
->
client
->
getResponse
()
->
isOk
());
$this
->
assertCount
(
1
,
$crawler
->
filter
(
'h1:contains("New Role")'
));
}
/** @test */
public
function
roleEditShouldBeAccessible
()
{
$uri
=
'/'
.
Config
::
get
(
'core::core.admin-prefix'
)
.
'/roles/6/edit'
;
$crawler
=
$this
->
client
->
request
(
'GET'
,
$uri
);
$this
->
assertTrue
(
$this
->
client
->
getResponse
()
->
isOk
());
$this
->
assertCount
(
1
,
$crawler
->
filter
(
'h1:contains("Updating Role")'
));
}
}
Write
Preview
Markdown
is supported
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