aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/journey/gtg/builder_test.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2016-08-06 20:20:22 +0200
committerXavier Noria <fxn@hashref.com>2016-08-06 20:20:22 +0200
commitb326e82dc012d81e9698cb1f402502af1788c1e9 (patch)
tree6b6452129a5b6b684f3d44f21afd2b1bea83fa22 /actionpack/test/journey/gtg/builder_test.rb
parent80e66cc4d90bf8c15d1a5f6e3152e90147f00772 (diff)
downloadrails-b326e82dc012d81e9698cb1f402502af1788c1e9.tar.gz
rails-b326e82dc012d81e9698cb1f402502af1788c1e9.tar.bz2
rails-b326e82dc012d81e9698cb1f402502af1788c1e9.zip
applies remaining conventions across the project
Diffstat (limited to 'actionpack/test/journey/gtg/builder_test.rb')
-rw-r--r--actionpack/test/journey/gtg/builder_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/journey/gtg/builder_test.rb b/actionpack/test/journey/gtg/builder_test.rb
index 5861cd2414..2b314cdd4e 100644
--- a/actionpack/test/journey/gtg/builder_test.rb
+++ b/actionpack/test/journey/gtg/builder_test.rb
@@ -59,7 +59,7 @@ module ActionDispatch
end
private
- def ast strings
+ def ast(strings)
parser = Journey::Parser.new
asts = strings.map { |string|
memo = Object.new
@@ -70,7 +70,7 @@ module ActionDispatch
Nodes::Or.new asts
end
- def tt strings
+ def tt(strings)
Builder.new(ast(strings)).transition_table
end
end