ccspec icon indicating copy to clipboard operation
ccspec copied to clipboard

C++'s RSpec: macro-free TDD and BDD power for C++11.

Results 4 ccspec issues
Sort by recently updated
recently updated
newest added

How to use this without Biicode?

Sometimes it's more readable to say ``` C++ expect(...).to(be(true)) expect(...).to(be(false)) ``` than to say ``` C++ expect(...).to(be_truthy) expect(...).to(be_falsey) ``` When we are sure that the subject must be true (1)...

enhancement
unassigned

We'd like to have the ability to expect the throwing of an C++ exception in CCSpec tests. We'd also like to reuse the usual `expect(...).to(...)` syntax: ``` C++ expect([] {...

enhancement

Currently all our text output onto the console are in the console's default color: ![screen shot 2015-06-21 at 3 59 16 pm](https://cloud.githubusercontent.com/assets/743034/8273161/8d334536-182e-11e5-8494-76b23bf8c41d.png) We would like have the ability to output...

enhancement