aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/paths_test.rb
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-06-26 15:36:38 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-06-26 15:37:52 -0700
commit4153c6b720563e1c43bb96e95f0ff5fbd59d6be7 (patch)
tree0125176b618d852584105a8fe27e682a2ef5bf28 /railties/test/paths_test.rb
parentb0774281ef4008f2c249b1e85bbdb1f28629d18f (diff)
downloadrails-4153c6b720563e1c43bb96e95f0ff5fbd59d6be7.tar.gz
rails-4153c6b720563e1c43bb96e95f0ff5fbd59d6be7.tar.bz2
rails-4153c6b720563e1c43bb96e95f0ff5fbd59d6be7.zip
Finished a first stab at the Rails application path object.
Diffstat (limited to 'railties/test/paths_test.rb')
-rw-r--r--railties/test/paths_test.rb104
1 files changed, 40 insertions, 64 deletions
diff --git a/railties/test/paths_test.rb b/railties/test/paths_test.rb
index 1fad324015..e7df58579f 100644
--- a/railties/test/paths_test.rb
+++ b/railties/test/paths_test.rb
@@ -1,68 +1,5 @@
require 'abstract_unit'
-
-module Rails
- class Application
- module PathParent
- def method_missing(id, *args)
- name = id.to_s
-
- if name =~ /^(.*)=$/
- @children[$1] = Path.new(args.first, @root)
- elsif path = @children[name]
- path
- else
- super
- end
- end
- end
-
- class Root
- include PathParent
-
- attr_reader :path
- def initialize(path)
- raise unless path.is_a?(String)
-
- @children = {}
-
- # TODO: Move logic from set_root_path initializer
- @path = File.expand_path(path)
- @root = self
- end
- end
-
- class Path
- include PathParent
-
- attr_reader :path #, :glob, :load_once, :eager
-
- def initialize(path, root)
- @children = {}
- @root = root
- @paths = [path].flatten
- end
-
- def push(path)
- @paths.push path
- end
-
- alias << push
-
- def unshift(path)
- @paths.unshift path
- end
-
-
- def paths
- @paths.map do |path|
- path.index('/') == 0 ? path : File.join(@root.path, path)
- end
- end
-
- alias to_a paths
- end
- end
-end
+require 'rails/paths'
class PathsTest < ActiveSupport::TestCase
@@ -127,4 +64,43 @@ class PathsTest < ActiveSupport::TestCase
assert_raise(NoMethodError) { @root.unshift "/biz" }
assert_raise(NoMethodError) { @root << "/biz" }
end
+
+ test "it is possible to add a path that should be loaded only once" do
+ @root.app = "/app"
+ @root.app.load_once!
+ assert @root.app.load_once?
+ assert @root.load_once.include?(@root.app)
+ end
+
+ test "making a path load_once more than once only includes it once in @root.load_once" do
+ @root.app = "/app"
+ @root.app.load_once!
+ @root.app.load_once!
+ assert_equal 1, @root.load_once.select {|p| p == @root.app }.size
+ end
+
+ test "it is possible to mark a path as eager" do
+ @root.app = "/app"
+ @root.app.eager_load!
+ assert @root.app.eager_load?
+ assert @root.eager_load.include?(@root.app)
+ end
+
+ test "making a path eager more than once only includes it once in @root.eager_paths" do
+ @root.app = "/app"
+ @root.app.eager_load!
+ @root.app.eager_load!
+ assert_equal 1, @root.eager_load.select {|p| p == @root.app }.size
+ end
+
+ test "a path should have a glob that defaults to **/*.rb" do
+ @root.app = "/app"
+ assert_equal "**/*.rb", @root.app.glob
+ end
+
+ test "it should be possible to override a path's default glob" do
+ @root.app = "/app"
+ @root.app.glob = "*.rb"
+ assert_equal "*.rb", @root.app.glob
+ end
end \ No newline at end of file