-
Notifications
You must be signed in to change notification settings - Fork 49
Closed
Labels
Description
Personally I think it looks kinda weird that the delimiter is included in the arguments dictionary that you get when you resolve arguments. I'd like to strip it out from the key entirely.
Before
Compass.parse(url) { route, arguments in
XCTAssertEqual("login:{username}:{password}", route)
XCTAssertEqual(arguments["{username}"], "JohnHyperseed")
XCTAssertEqual(arguments["{password}"], "secret")
}After
Compass.parse(url) { route, arguments in
XCTAssertEqual("login:{username}:{password}", route)
XCTAssertEqual(arguments["username"], "JohnHyperseed")
XCTAssertEqual(arguments["password"], "secret")
}Reactions are currently unavailable