roundabout 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
data/README.md
CHANGED
@@ -4,7 +4,7 @@ class Capybara::RackTest::Browser
|
|
4
4
|
def follow_with_recording(method, path, attributes = {})
|
5
5
|
return if path.gsub(/^#{request_path}/, '').start_with?('#')
|
6
6
|
begin
|
7
|
-
Roundabout.record_transition Roundabout.normalize_url(URI.parse(driver.current_url).path), Roundabout.normalize_url(path), method, :link
|
7
|
+
Roundabout.record_transition Roundabout.normalize_url(URI.parse(driver.current_url).path), Roundabout.normalize_url(path, method), method, :link
|
8
8
|
rescue => e
|
9
9
|
p e
|
10
10
|
end
|
data/lib/roundabout/version.rb
CHANGED