Skip to content
Snippets Groups Projects
Commit 556c07df authored by ysksn's avatar ysksn Committed by Yamagishi Kazutoshi
Browse files

Add tests for Status#verb (#5717)

parent 30237259
No related branches found
No related tags found
No related merge requests found
......@@ -47,8 +47,27 @@ RSpec.describe Status, type: :model do
end
describe '#verb' do
it 'is always post' do
expect(subject.verb).to be :post
context 'if destroyed?' do
it 'returns :delete' do
subject.destroy!
expect(subject.verb).to be :delete
end
end
context 'unless destroyed?' do
context 'if reblog?' do
it 'returns :share' do
subject.reblog = other
expect(subject.verb).to be :share
end
end
context 'unless reblog?' do
it 'returns :post' do
subject.reblog = nil
expect(subject.verb).to be :post
end
end
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment