2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-01-19 21:37:27 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 05:12:25 +00:00
|
|
|
RSpec.describe StatusEdit do
|
2023-03-04 16:16:45 +00:00
|
|
|
describe '#reblog?' do
|
|
|
|
it 'returns false' do
|
|
|
|
record = described_class.new
|
|
|
|
|
|
|
|
expect(record).to_not be_a_reblog
|
|
|
|
end
|
|
|
|
end
|
2022-01-19 21:37:27 +00:00
|
|
|
end
|