Optimize a few simple spec files by using `set`

This commit is contained in:
Grzegorz Bizon 2017-09-05 09:37:06 +02:00
parent 937db37dda
commit 6a4dd05190
4 changed files with 9 additions and 6 deletions

View File

@ -1,8 +1,9 @@
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 }

View File

@ -1,6 +1,6 @@
require 'rails_helper'
RSpec.describe Appearance do
describe Appearance do
subject { build(:appearance) }
it { is_expected.to be_valid }

View File

@ -1,7 +1,8 @@
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) }

View File

@ -1,7 +1,8 @@
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) }