Sha256: 23497870d0cd592d7f3a047db5fc863681f57e076ef444ac863e0ef489b65677
Contents?: true
Size: 989 Bytes
Versions: 2
Compression:
Stored size: 989 Bytes
Contents
require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'test_helper.rb')) class UnlessTest < Test::Unit::TestCase include KoiReferenceParser test "should parse unless statement" do tree = Parser.parse("unless(1 == 1)\n test = 1\nend") assert_kind_of Block, tree assert_kind_of Statement, tree.elements.first assert_kind_of Unless, tree.elements.first.elements.first assert_kind_of Expression, tree.elements.first.elements.first.elements.first assert_kind_of Block, tree.elements.first.elements.first.elements.last end test "should parse single line unless statement" do tree = Parser.parse("unless(1 == 1) test = 1; end") assert_kind_of Block, tree assert_kind_of Statement, tree.elements.first assert_kind_of Unless, tree.elements.first.elements.first assert_kind_of Expression, tree.elements.first.elements.first.elements.first assert_kind_of Block, tree.elements.first.elements.first.elements.last end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
koi-reference-parser-0.0.3 | test/unit/flow_control/unless_test.rb |
koi-reference-parser-0.0.2 | test/parser/unit/unless_test.rb |