Sha256: 9c49202d976088f5a36bf82b07ebdb4ce09601367dafabcc904222dee264ea50

Contents?: true

Size: 373 Bytes

Versions: 5

Compression:

Stored size: 373 Bytes

Contents

require "helper"

class TestEmitter < Test::Unit::TestCase
  def test_emitter_e
    assert_equal ["2", "2"], e("2", "2")
  end
  
  def test_emitter_le
    assert_equal [:c, "2", "2"], le("2", "2")
  end
  
  def test_emitter_be
    assert_equal [:b, "2", "2"], se("2", "2")
  end
  
  def test_emitter_be
    assert_equal [:b, [:c,"2", "2"]], se(le("2", "2"))
  end
  
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tickly-2.1.6 test/test_emitter.rb
tickly-2.1.5 test/test_emitter.rb
tickly-2.1.4 test/test_emitter.rb
tickly-2.1.3 test/test_emitter.rb
tickly-2.1.2 test/test_emitter.rb