Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
0df1fe7978f9
Commit
6a4dd051
authored
Sep 05, 2017
by
Grzegorz Bizon
Browse files
Optimize a few simple spec files by using `set`
parent
ef6155948234
Changes
4
Hide whitespace changes
Inline
Side-by-side
spec/models/abuse_report_spec.rb
View file @
0df1fe79
require
'rails_helper'
RSpec
.
describe
AbuseReport
do
subject
{
create
(
:abuse_report
)
}
let
(
:user
)
{
create
(
:admin
)
}
describe
AbuseReport
do
set
(
:report
)
{
create
(
:abuse_report
)
}
set
(
:user
)
{
create
(
:admin
)
}
subject
{
report
}
it
{
expect
(
subject
).
to
be_valid
}
...
...
spec/models/appearance_spec.rb
View file @
0df1fe79
require
'rails_helper'
RSpec
.
describe
Appearance
do
describe
Appearance
do
subject
{
build
(
:appearance
)
}
it
{
is_expected
.
to
be_valid
}
...
...
spec/models/chat_name_spec.rb
View file @
0df1fe79
require
'spec_helper'
describe
ChatName
do
subject
{
create
(
:chat_name
)
}
set
(
:chat_name
)
{
create
(
:chat_name
)
}
subject
{
chat_name
}
it
{
is_expected
.
to
belong_to
(
:service
)
}
it
{
is_expected
.
to
belong_to
(
:user
)
}
...
...
spec/models/chat_team_spec.rb
View file @
0df1fe79
require
'spec_helper'
describe
ChatTeam
do
subject
{
create
(
:chat_team
)
}
set
(
:chat_team
)
{
create
(
:chat_team
)
}
subject
{
chat_team
}
# Associations
it
{
is_expected
.
to
belong_to
(
:namespace
)
}
...
...
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