0
0
Fork 0

Implement pending tests (#11415)

This commit is contained in:
ysksn 2019-07-27 17:24:26 +09:00 committed by Eugen Rochko
parent 8a4674f2c3
commit d6ada2eb30
2 changed files with 36 additions and 2 deletions

View file

@ -1,5 +1,13 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe PollVote, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
describe '#object_type' do
let(:poll_vote) { Fabricate.build(:poll_vote) }
it 'returns :vote' do
expect(poll_vote.object_type).to eq :vote
end
end
end