2023-02-21 18:55:31 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-12 12:09:21 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-03 22:49:53 -05:00
|
|
|
RSpec.describe Conversation do
|
2019-07-28 10:47:37 -05:00
|
|
|
describe '#local?' do
|
|
|
|
it 'returns true when URI is nil' do
|
|
|
|
expect(Fabricate(:conversation).local?).to be true
|
|
|
|
end
|
2017-05-12 12:09:21 -05:00
|
|
|
|
2019-07-28 10:47:37 -05:00
|
|
|
it 'returns false when URI is not nil' do
|
|
|
|
expect(Fabricate(:conversation, uri: 'abc').local?).to be false
|
|
|
|
end
|
|
|
|
end
|
2017-05-12 12:09:21 -05:00
|
|
|
end
|