mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
21 lines
578 B
Ruby
21 lines
578 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
|