mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 14:17:00 +08:00
640f6c1211
Closes SCI-3544
13 lines
383 B
Ruby
13 lines
383 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe ProtocolImporters::ProtocolNormalizer do
|
|
describe '.normalize_all_protocols' do
|
|
it { expect { subject.normalize_all_protocols({}) }.to raise_error(NotImplementedError) }
|
|
end
|
|
|
|
describe '.normalize_protocols' do
|
|
it { expect { subject.normalize_protocol({}) }.to raise_error(NotImplementedError) }
|
|
end
|
|
end
|