-
Notifications
You must be signed in to change notification settings - Fork 54
Open
Labels
Description
Hi, first of all - I really like exploring and diving deeper to nspec.
I'm filtering my testcases with tags which is working fine.
Right now for most cases it works to add tags in fluent description
void do_test()
{
it["do some stuff", "label"] = () => testCase1();
context["then something else", ""longperformancetest"] = () =>
{
it["testcase 2.1"] = () => case21();
it["testcase 2.2"] = () => case22();
it["testcase 2.3"] = () => case23();
...
};
}But I'm missing the way to associate filter tags directly to a test method.
The documentation doesn't mention tags or restrictions to them.