Adding more test stubs
This commit is contained in:
parent
66a2107527
commit
d4892ace62
13 changed files with 100 additions and 23 deletions
|
@ -111,4 +111,16 @@ RSpec.describe Account, type: :model do
|
|||
describe '#ping!' do
|
||||
pending
|
||||
end
|
||||
|
||||
describe '#favourited?' do
|
||||
pending
|
||||
end
|
||||
|
||||
describe '#reblogged?' do
|
||||
pending
|
||||
end
|
||||
|
||||
describe '.find_local' do
|
||||
pending
|
||||
end
|
||||
end
|
||||
|
|
7
spec/models/feed_spec.rb
Normal file
7
spec/models/feed_spec.rb
Normal file
|
@ -0,0 +1,7 @@
|
|||
require 'rails_helper'
|
||||
|
||||
RSpec.describe Feed, type: :model do
|
||||
describe '#get' do
|
||||
pending
|
||||
end
|
||||
end
|
|
@ -114,4 +114,12 @@ RSpec.describe Status, type: :model do
|
|||
expect(subject.target).to eq other
|
||||
end
|
||||
end
|
||||
|
||||
describe '#reblogs_count' do
|
||||
pending
|
||||
end
|
||||
|
||||
describe '#favourites_count' do
|
||||
pending
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue