Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inconsistent behaviour while creating a template from a URI #101

Open
achamian opened this issue Mar 12, 2011 · 0 comments
Open

Inconsistent behaviour while creating a template from a URI #101

achamian opened this issue Mar 12, 2011 · 0 comments

Comments

@achamian
Copy link
Contributor

Executing following code

base = 'http://foo.com/api/xml'.to_uri
p base.to_template("bar/:id").uri_pattern

base = 'http://foo.com/api/xml/'.to_uri
p base.to_template("bar/:id").uri_pattern

base = 'http://foo.com/api/xml'.to_uri
p base.to_template("/bar/:id").uri_pattern

Produces

"http://foo.com/api/bar/:id"

"http://foo.com/api/xml/bar/:id" # Expected behaviour (Considering p base["/bar"].uri_string to be standard)

"http://foo.com/bar/:id"

Note that 'xml' is dropped in first case where as only base path is considered in last.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant