status_edit_spec.rb 223 B

12345678910111213
  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. describe StatusEdit do
  4. describe '#reblog?' do
  5. it 'returns false' do
  6. record = described_class.new
  7. expect(record).to_not be_a_reblog
  8. end
  9. end
  10. end