IronRuby.Tests.Tests.Strings8 C# (CSharp) Method

Strings8() public method

public Strings8 ( ) : void
return void
        public void Strings8() {
            AssertOutput(delegate() {
                CompilerTest(@"
puts 'foo  bar'.split
");
            }, @"
foo
bar
");
        }
Tests