@Test
public void usesCamelCaseAbbreviationToSelectTasksWhenNoExactMatchAndPathProvided() {
final Task task1 = task("someTask");
final Task task2 = task("other");
context.checking(new Expectations(){{
one(project).getChildProjects();
will(returnValue(toMap("anotherProject", otherProject)));
one(resolver).select("soTa", otherProject);
will(returnValue(tasks(task1, task2)));
one(taskExecuter).addTasks(toSet(task1));