Class: ChunkTest

Inherits:
Test::Unit::TestCase
  • Object
show all
Defined in:
app/models/chunks/test.rb

Instance Method Summary collapse

Instance Method Details

#match(type, test_text, expected) ⇒ Object

Asserts a number of tests for the given type and text.



6
7
8
9
10
11
12
13
14
15
16
17
# File 'app/models/chunks/test.rb', line 6

def match(type, test_text, expected)
	pattern = type.pattern
  assert_match(pattern, test_text)
  pattern =~ test_text   # Previous assertion guarantees match
  chunk = type.new($~)
  
  # Test if requested parts are correct.
  for method_sym, value in expected do
    assert_respond_to(chunk, method_sym)
    assert_equal(value, chunk.method(method_sym).call, "Checking value of '#{method_sym}'")
  end
end