Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
a9d21c95
Commit
a9d21c95
authored
Aug 12, 2020
by
lauraMon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds UserStatusType spec
parent
e1b8152b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
spec/graphql/types/user_status_type_spec.rb
spec/graphql/types/user_status_type_spec.rb
+15
-0
No files found.
spec/graphql/types/user_status_type_spec.rb
0 → 100644
View file @
a9d21c95
# frozen_string_literal: true
require
'spec_helper'
RSpec
.
describe
Types
::
UserStatusType
do
specify
{
expect
(
described_class
.
graphql_name
).
to
eq
(
'UserStatus'
)
}
it
'exposes the expected fields'
do
expected_fields
=
%i[
message_html
]
expect
(
described_class
).
to
have_graphql_fields
(
*
expected_fields
)
end
end
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