mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-11-01 00:56:05 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			582 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			582 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| require 'rails_helper'
 | |
| 
 | |
| describe Experiments::GenerateWorkflowImageService do
 | |
|   let(:experiment) { create :experiment, :with_tasks }
 | |
|   let(:params) { { experiment: experiment } }
 | |
| 
 | |
|   context 'when succeed' do
 | |
|     it 'succeed? returns true' do
 | |
|       expect(described_class.call(**params).succeed?).to be_truthy
 | |
|     end
 | |
| 
 | |
|     it 'worklfow image of experiment is updated' do
 | |
|       old_filename = nil
 | |
|       described_class.call(**params)
 | |
|       experiment.reload
 | |
|       expect(experiment.workflowimg.blob.filename).not_to be == old_filename
 | |
|     end
 | |
|   end
 | |
| end
 |