File: and_spec.rb

package info (click to toggle)
ruby-morpher 0.2.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 520 kB
  • sloc: ruby: 2,366; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 391 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
describe Morpher::Evaluator::Predicate::Boolean::And do
  let(:object) { described_class.new([body_a, body_b]) }

  let(:body_a) { Morpher.compile(s(:primitive, String))                          }
  let(:body_b) { Morpher.compile(s(:eql, s(:attribute, :length), s(:static, 1))) }

  let(:negative_input) { ''   }
  let(:positive_input) { 'a'  }

  include_examples 'predicate evaluator'
end