ryanmasondavies / Specify

An Objective-C behaviour-driven development library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Format results for clarity

ryanmasondavies opened this issue · comments

Results should be formatted to make the results of a test easier to acknowledge. The format should be more similar to that of Rspec:

the subject
    should do something
    when valid
        should do something else

Note that the groups are nested within one another.

The results should also display whether the example is pending, or has failed, as in Cedar:

the subject
[F] should do something
    when valid
[P]     should do something else

Here, the first example has failed, and the second is pending.

Behaviour moved up to Inline: ryanmasondavies/Inline#16