Created
October 26, 2012 12:15
-
-
Save agross/3958458 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Machine.Specifications; | |
namespace ClassLibrary | |
{ | |
public class Class | |
{ | |
// Change class name, add properties -> Nested should vanish. But it doesn't. | |
} | |
public class Outer | |
{ | |
public class Nested | |
{ | |
It should = () => { }; | |
} | |
} | |
public class NonNested | |
{ | |
It should = () => { }; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment