File: transform_spec.rb

package info (click to toggle)
ruby-morpher 0.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 236 kB
  • sloc: ruby: 1,444; makefile: 4
file content (62 lines) | stat: -rw-r--r-- 1,283 bytes parent folder | download
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
57
58
59
60
61
62
# frozen_string_literal: true

RSpec.describe Morpher::Transform do
  describe '#array' do
    subject do
      Morpher::Transform::STRING
    end

    it 'returns array' do
      expect(subject.array).to eql(
        Morpher::Transform::Array.new(subject)
      )
    end
  end

  describe '#maybe' do
    subject do
      Morpher::Transform::STRING
    end

    it 'returns maybe' do
      expect(subject.maybe).to eql(
        Morpher::Transform::Maybe.new(subject)
      )
    end
  end

  describe '#seq' do
    subject do
      Morpher::Transform::STRING
    end

    let(:other) do
      Morpher::Transform::Success.new(:upcase.to_proc)
    end

    it 'returns sequence' do
      expect(subject.seq(other)).to eql(
        Morpher::Transform::Sequence.new([subject, other])
      )
    end
  end

  describe '#to_proc' do
    subject do
      Morpher::Transform::STRING
    end

    it 'returns proc' do
      expect(subject.to_proc).to be_instance_of(Proc)
    end

    it 'executes #call when evaluated' do
      aggregate_failures do
        expect(subject.to_proc.call('a').from_right).to be('a')
        expect(subject.to_proc.call(1).lmap(&:compact_message).from_left).to eql(
          'String: Expected: String but got: Integer'
        )
      end
    end
  end
end