trabajo-afectivo/spec/models/ticket/time_accounting_spec.rb

28 lines
961 B
Ruby
Raw Normal View History

require 'rails_helper'
RSpec.describe Ticket::TimeAccounting, type: :model do
subject(:time_accounting) { create(:'ticket/time_accounting') }
describe 'Associations:' do
describe '#ticket_article' do
subject!(:time_accounting) { create(:'ticket/time_accounting', :for_article) }
context 'when destroyed' do
it 'destroys self' do
expect { time_accounting.ticket_article.destroy }
.to change(time_accounting, :persisted?).to(false)
.and change { Ticket::TimeAccounting.count }.by(-1)
end
it 'does not destroy other TimeAccountings for same ticket' do
create(:'ticket/time_accounting', ticket: time_accounting.ticket)
create(:'ticket/time_accounting', :for_article, ticket: time_accounting.ticket)
expect { time_accounting.ticket_article.destroy }
.to change { Ticket::TimeAccounting.count }.by(-1)
end
end
end
end
end