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

MainSingleton2() public method

public MainSingleton2 ( ) : void
return void
        public void MainSingleton2() {
            AssertOutput(delegate() {
                CompilerTest(@"
module M
  def foo
    puts 'foo'
  end
end

include M
foo
");
            }, "foo");
        }
Tests