Skip to content

Instantly share code, notes, and snippets.

@agross
Created October 26, 2012 12:15
Show Gist options
  • Save agross/3958458 to your computer and use it in GitHub Desktop.
Save agross/3958458 to your computer and use it in GitHub Desktop.
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