rubyx/test/sol/lambdas/test_class_blocks.rb
Torsten Rüger d1f8733623 Rename Vool to Sol
Simple is really the descriptive name for the layer
Sure, it is "virtual" but that is not as important as the fact that it is simple (or simplified)
Also objct (based really) is better, since orientated implies it is a little like that, but only orientated, not really it. Sol only has objects, nothing else
Just cause i was renaming anyway
2019-10-04 00:38:47 +03:00

29 lines
780 B
Ruby

require_relative "../helper"
module SolBlocks
class TestClassAssignSlotMachine < MiniTest::Test
def setup
Parfait.boot!(Parfait.default_test_options)
end
def as_class_method(source)
"class Space;def self.main();#{source};end;end"
end
def test_block_not_compiles
source = "main{|val| val = 0}"
sol = Ruby::RubyCompiler.compile( as_class_method(source) ).to_sol
sol.to_parfait
begin
sol.to_slot(nil)
rescue => err
assert err.message.include?("Blocks") , err.message
end
end
def test_assign_compiles
sol = Ruby::RubyCompiler.compile( as_class_method("val = 0") ).to_sol
sol.to_parfait
assert_equal SlotMachine::SlotCollection , sol.to_slot(nil).class
end
end
end