diff options
author | Yehuda Katz <wycats@gmail.com> | 2012-04-25 16:43:01 -0500 |
---|---|---|
committer | Yehuda Katz <wycats@gmail.com> | 2012-04-25 16:43:01 -0500 |
commit | 47be2f101cf133d6d1b9527b8764306d6ddcbf2c (patch) | |
tree | 225f51ce88cbc35212ec7098753f2c907394cd26 /actionpack/test | |
parent | fe6573e7184cb7e55b4045d2b61696315e13a201 (diff) | |
download | rails-47be2f101cf133d6d1b9527b8764306d6ddcbf2c.tar.gz rails-47be2f101cf133d6d1b9527b8764306d6ddcbf2c.tar.bz2 rails-47be2f101cf133d6d1b9527b8764306d6ddcbf2c.zip |
Fix the build
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/mapper_test.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/mapper_test.rb b/actionpack/test/dispatch/mapper_test.rb index 8070bdec8a..bd078d2b21 100644 --- a/actionpack/test/dispatch/mapper_test.rb +++ b/actionpack/test/dispatch/mapper_test.rb @@ -4,11 +4,12 @@ module ActionDispatch module Routing class MapperTest < ActiveSupport::TestCase class FakeSet - attr_reader :routes + attr_reader :routes, :draw_paths alias :set :routes def initialize @routes = [] + @draw_paths = [] end def resources_path_names |