Browse Source

No longer ignoring one of the python parser tests which now works in IronPython 2

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3634 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 18 years ago
parent
commit
8fb658431b
  1. 8
      src/AddIns/BackendBindings/Python/PythonBinding/Test/Parsing/ParseClassWithCtorTestFixture.cs

8
src/AddIns/BackendBindings/Python/PythonBinding/Test/Parsing/ParseClassWithCtorTestFixture.cs

@ -63,14 +63,7 @@ namespace PythonBinding.Tests.Parsing @@ -63,14 +63,7 @@ namespace PythonBinding.Tests.Parsing
}
}
/// <summary>
/// This tests fails because IronPython returns the correct
/// end column for the method body in this case. In general
/// it gets it wrong for class and method bodies by being
/// one character too long.
/// </summary>
[Test]
[Ignore("Method body region returned is off by one due to bug in IronPython.")]
public void MethodBodyRegion()
{
int startLine = 2;
@ -82,7 +75,6 @@ namespace PythonBinding.Tests.Parsing @@ -82,7 +75,6 @@ namespace PythonBinding.Tests.Parsing
}
[Test]
[Ignore]
public void MethodFoldMarkerInnerText()
{
Assert.AreEqual("\r\n\t\tpass", methodMarker.InnerText);

Loading…
Cancel
Save