tracks = c.search(["tag:wibble"])
assert len(tracks) == 1, "checking there is exactly one search result(1)"
assert tracks[0] == track, "checking for right search result(1)"
tracks = c.search(["tag: another tAg "])
assert len(tracks) == 1, "checking there is exactly one search result(2)"
assert tracks[0] == track, "checking for right search result(2)"
tracks = c.search(["tag:wibble"])
assert len(tracks) == 1, "checking there is exactly one search result(1)"
assert tracks[0] == track, "checking for right search result(1)"
tracks = c.search(["tag: another tAg "])
assert len(tracks) == 1, "checking there is exactly one search result(2)"
assert tracks[0] == track, "checking for right search result(2)"