2014-04-29 15:47:33 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
2014-04-29 16:02:38 +02:00
|
|
|
class TestConditional < MiniTest::Test
|
2014-04-29 15:47:33 +02:00
|
|
|
# include the magic (setup and parse -> test method translation), see there
|
|
|
|
include ParserHelper
|
|
|
|
|
|
|
|
def test_conditional
|
|
|
|
@string_input = <<HERE
|
2014-05-08 18:49:15 +02:00
|
|
|
if(0)
|
2014-04-29 15:47:33 +02:00
|
|
|
42
|
|
|
|
else
|
|
|
|
667
|
|
|
|
end
|
|
|
|
HERE
|
2014-05-11 17:38:02 +02:00
|
|
|
@parse_output = {:if=>"if", :conditional=>{:integer=>"0"},
|
|
|
|
:if_true=>{:expressions=>[{:integer=>"42"}], :else=>"else"},
|
|
|
|
:if_false=>{:expressions=>[{:integer=>"667"}], :end=>"end"}}
|
2014-05-05 08:51:16 +02:00
|
|
|
@transform_output = Ast::ConditionalExpression.new( Ast::IntegerExpression.new(0),
|
|
|
|
[Ast::IntegerExpression.new(42)], [Ast::IntegerExpression.new(667)])
|
2014-04-29 15:47:33 +02:00
|
|
|
|
|
|
|
@parser = @parser.conditional
|
|
|
|
end
|
|
|
|
end
|