mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 13:45:25 +08:00
13 lines
364 B
Ruby
13 lines
364 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe ProtocolImporters::ProtocolNormalizer do
|
|
describe '.normalize_list' do
|
|
it { expect { subject.normalize_list({}) }.to raise_error(NotImplementedError) }
|
|
end
|
|
|
|
describe '.normalize_protocol' do
|
|
it { expect { subject.normalize_protocol({}) }.to raise_error(NotImplementedError) }
|
|
end
|
|
end
|