1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
# frozen_string_literal: true
RSpec.describe Morpher::Transform::Primitive do
subject { described_class.new(primitive) }
let(:primitive) { String }
describe '#slug' do
def apply
subject.slug
end
it 'returns strigified primitive' do
expect(apply).to eql('String')
end
it 'is idempotent' do
expect(apply).to be(apply)
end
it 'is frozen' do
expect(apply.frozen?).to be(true)
end
end
describe '#call' do
def apply
subject.call(input)
end
context 'on string input' do
let(:input) { 'some-string' }
it 'returns sucess' do
expect(apply).to eql(right(input))
end
end
context 'on other input' do
let(:input) { 1 }
let(:error) do
Morpher::Transform::Error.new(
cause: nil,
input: input,
message: 'Expected: String but got: Integer',
transform: subject
)
end
it 'returns failure' do
expect(apply).to eql(left(error))
end
end
end
end
|