Skip to content

Releases: joakimkarlsson/igloo

Igloo v.1.1.1

06 Aug 15:25
Compare
Choose a tag to compare

This release fixes the following issues:

  • There was a problem building on some systems due to a missing #include <iterator>
  • Context names were not locally scoped. This prevented us from having contexts with the same name but with different parent contexts. (#10)

Igloo v.1.1.0

18 Jul 12:47
Compare
Choose a tag to compare

Adds the following features:

Running single contexts or specs

Appending "_Only" at the end of "Context/Spec", "Describe/It", or "When/Then" will cause Igloo to only run those tests.

Skipping tests

Appending "_Skip" at the end of "Context/Spec", "Describe/It", or "When/Then" will cause Igloo to skip those tests.

Direct access to root context

When having nested contexts it is now possible to access the root context directly using the "Root()" method. With multiple levels of nesting this is a lot simpler than chaining together "Parent().Parent()" until the root context is reached.