I was recently reading Wikpedia's list of Anti-Patterns and noticed that this was included:
Smoke and mirrors: Demonstrating how unimplemented functions will appear
Why is this a bad thing to do? The only thing I can see is that if you never actually get around to implementing said function. And what if the function is in the formal spec, "guaranteed" to be completed? Would it still be bad to do in order to show potential clients what they'll be capable of?
To learn why smoke and mirrors would be an antipattern, take a look at the Smoke and Mirrors Wikipedia entry. From the article:
Often times, smoke and mirrors are used to impress management or customers with a demo in order to get/keep funding, but there is no real code underneath. This works for a time, but, ultimately results in other anti-patterns (spaghetti code, the blob, etc) in order to try to get something real once it is actually asked for.
Projects that begin as Smoke and Mirrors tend to end horribly. Like a relationship, if you develop your code on lies, everything will fall apart in the end.