I'm thinking we can create a separate header called igloo_spec.h or
something side by side with the core igloo.h.
We could put your behavior-like macros along with the spec-like macros
used in the screencast there.
This should enable us to ship these without risking name collisions
with other code.
/Joakim
The describe/it/when macros are available via the igloo_alt.h header:
#include <igloo/igloo_alt.h>
using namespace igloo;
Describe(...)
{
It(...)
};
When(...)
{
It(...)
};
I haven't done anything for the abstract test case (sub context)
aliases yet. I can't come up with a good naming scheme for that.
/J