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
|
# frozen_string_literal: true
RSpec.describe Morpher::Transform::Named do
subject { described_class.new(name, transform) }
let(:name) { 'transform-name' }
let(:transform) { Morpher::Transform::Boolean.new }
describe '#slug' do
def apply
subject.slug
end
it 'returns name' do
expect(apply).to be(name)
end
end
describe '#call' do
def apply
subject.call(input)
end
context 'on valid input' do
let(:input) { true }
it 'returns sucess' do
expect(apply).to eql(right(input))
end
end
context 'on invalid input' do
let(:input) { 1 }
let(:error) do
Morpher::Transform::Error.new(
cause: transform.call(input).from_left,
input: input,
message: nil,
transform: subject
)
end
it 'returns failure' do
expect(apply).to eql(left(error))
end
end
end
end
|