File: not_predicate_test.rb

package info (click to toggle)
ruby-citrus 3.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 420 kB
  • sloc: ruby: 3,417; makefile: 5
file content (43 lines) | stat: -rw-r--r-- 970 bytes parent folder | download | duplicates (3)
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
require File.expand_path('../helper', __FILE__)

class NotPredicateTest < Test::Unit::TestCase
  def test_terminal?
    rule = NotPredicate.new
    assert_equal(false, rule.terminal?)
  end

  def test_exec
    rule = NotPredicate.new('abc')
    events = rule.exec(Input.new('def'))
    assert_equal([rule, CLOSE, 0], events)
  end

  def test_exec_miss
    rule = NotPredicate.new('abc')
    events = rule.exec(Input.new('abc'))
    assert_equal([], events)
  end

  def test_consumption
    rule = NotPredicate.new(Sequence.new(['a', 'b', 'c']))

    input = Input.new('abc')
    events = rule.exec(input)
    assert_equal(0, input.pos)

    input = Input.new('def')
    events = rule.exec(input)
    assert_equal(0, input.pos)
  end

  def test_to_s
    rule = NotPredicate.new('a')
    assert_equal('!"a"', rule.to_s)
  end

  def test_to_s_with_label
    rule = NotPredicate.new('a')
    rule.label = 'a_label'
    assert_equal('a_label:!"a"', rule.to_s)
  end
end