mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-10-30 07:58:28 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| require 'rails_helper'
 | |
| 
 | |
| describe RepositoryDateTimeValueBase, type: :model do
 | |
|   let(:repository_date_time_value) { build :repository_date_time_value }
 | |
| 
 | |
|   it 'is valid' do
 | |
|     expect(repository_date_time_value).to be_valid
 | |
|   end
 | |
| 
 | |
|   describe 'Validations' do
 | |
|     describe '#repository_cell' do
 | |
|       it { is_expected.to validate_presence_of(:repository_cell) }
 | |
|     end
 | |
| 
 | |
|     describe '#data' do
 | |
|       it { is_expected.to validate_presence_of(:data) }
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   describe 'Associations' do
 | |
|     it { is_expected.to belong_to(:created_by).optional }
 | |
|     it { is_expected.to belong_to(:last_modified_by).optional }
 | |
|     it { is_expected.to have_one(:repository_cell) }
 | |
|   end
 | |
| 
 | |
|   describe '.update_data!' do
 | |
|     let(:user) { create :user }
 | |
|     let(:new_data) { Time.now.utc.to_s }
 | |
| 
 | |
|     context 'when update data' do
 | |
|       it 'should change last_modified_by and dates' do
 | |
|         repository_date_time_value.save
 | |
| 
 | |
|         expect { repository_date_time_value.update_data!(new_data, user) }
 | |
|           .to(change { repository_date_time_value.reload.last_modified_by.id }
 | |
|                 .and(change { repository_date_time_value.reload.data }))
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 |