aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-01-02 15:16:59 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-01-02 15:16:59 +0000
commitf4b721904a26f631fbc6d7241b7f9480cc87ea47 (patch)
tree17c00d0e07848e22a0ba270a93c680cff8a4faf9 /activesupport
parent089ef42520968c7852c97faf07e5101685885150 (diff)
downloadrails-f4b721904a26f631fbc6d7241b7f9480cc87ea47.tar.gz
rails-f4b721904a26f631fbc6d7241b7f9480cc87ea47.tar.bz2
rails-f4b721904a26f631fbc6d7241b7f9480cc87ea47.zip
Added test cases and rakefile to Active Support
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@310 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/Rakefile6
-rw-r--r--activesupport/lib/misc.rb32
-rw-r--r--activesupport/test/dependencies_test.rb8
-rw-r--r--activesupport/test/inflector_test.rb3
-rw-r--r--activesupport/test/misc_test.rb51
5 files changed, 93 insertions, 7 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
new file mode 100644
index 0000000000..fe8ac17112
--- /dev/null
+++ b/activesupport/Rakefile
@@ -0,0 +1,6 @@
+require 'rake/testtask'
+
+task :default => :test
+Rake::TestTask.new { |t|
+ t.pattern = 'test/*_test.rb'
+}
diff --git a/activesupport/lib/misc.rb b/activesupport/lib/misc.rb
index db842f6061..d2c3d4a045 100644
--- a/activesupport/lib/misc.rb
+++ b/activesupport/lib/misc.rb
@@ -1,6 +1,32 @@
def silence_warnings
old_verbose, $VERBOSE = $VERBOSE, nil
- result = yield
- $VERBOSE = old_verbose
- return result
+ begin
+ yield
+ ensure
+ $VERBOSE = old_verbose
+ end
+end
+
+class Hash
+ # Return a new hash with all keys converted to symbols.
+ def symbolize_keys
+ inject({}) do |options, (key, value)|
+ options[key.to_sym] = value
+ options
+ end
+ end
+
+ # Destructively convert all keys to symbols.
+ def symbolize_keys!
+ keys.each do |key|
+ unless key.is_a?(Symbol)
+ self[key.to_sym] = self[key]
+ delete(key)
+ end
+ end
+ self
+ end
+
+ alias_method :to_options, :symbolize_keys
+ alias_method :to_options!, :symbolize_keys!
end
diff --git a/activesupport/test/dependencies_test.rb b/activesupport/test/dependencies_test.rb
index cf704992a1..eb57413777 100644
--- a/activesupport/test/dependencies_test.rb
+++ b/activesupport/test/dependencies_test.rb
@@ -1,7 +1,9 @@
-require File.dirname(__FILE__) + '/../abstract_unit'
-require 'action_controller/support/dependencies'
+require 'test/unit'
+$LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
+require 'misc'
+require 'dependencies'
-$LOAD_PATH << File.dirname(__FILE__) + '/../fixtures/dependencies'
+$LOAD_PATH.unshift File.dirname(__FILE__) + '/dependencies'
class DependenciesTest < Test::Unit::TestCase
def teardown
diff --git a/activesupport/test/inflector_test.rb b/activesupport/test/inflector_test.rb
index 7bcff70bdd..41b5f909bb 100644
--- a/activesupport/test/inflector_test.rb
+++ b/activesupport/test/inflector_test.rb
@@ -1,4 +1,5 @@
-require 'abstract_unit'
+require 'test/unit'
+require File.dirname(__FILE__) + '/../lib/inflector'
class InflectorTest < Test::Unit::TestCase
SingularToPlural = {
diff --git a/activesupport/test/misc_test.rb b/activesupport/test/misc_test.rb
new file mode 100644
index 0000000000..2a6c40709a
--- /dev/null
+++ b/activesupport/test/misc_test.rb
@@ -0,0 +1,51 @@
+require 'test/unit'
+require File.dirname(__FILE__) + '/../lib/misc'
+
+class MiscTest < Test::Unit::TestCase
+ def test_silence_warnings
+ silence_warnings { assert_nil $VERBOSE }
+ assert_equal 1234, silence_warnings { 1234 }
+ end
+
+ def test_silence_warnings_verbose_invariant
+ old_verbose = $VERBOSE
+ begin
+ silence_warnings { raise }
+ flunk
+ rescue
+ assert_equal old_verbose, $VERBOSE
+ end
+ end
+end
+
+class HashOptionsTest < Test::Unit::TestCase
+ def setup
+ @strings = { 'a' => 1, 'b' => 2 }
+ @symbols = { :a => 1, :b => 2 }
+ @mixed = { :a => 1, 'b' => 2 }
+ end
+
+ def test_methods
+ h = {}
+ assert_respond_to h, :symbolize_keys
+ assert_respond_to h, :symbolize_keys!
+ assert_respond_to h, :to_options
+ assert_respond_to h, :to_options!
+ end
+
+ def test_symbolize_keys
+ assert_equal @symbols, @symbols.symbolize_keys
+ assert_equal @symbols, @strings.symbolize_keys
+ assert_equal @symbols, @mixed.symbolize_keys
+
+ assert_raises(NoMethodError) { { [] => 1 }.symbolize_keys }
+ end
+
+ def test_symbolize_keys!
+ assert_equal @symbols, @symbols.dup.symbolize_keys!
+ assert_equal @symbols, @strings.dup.symbolize_keys!
+ assert_equal @symbols, @mixed.dup.symbolize_keys!
+
+ assert_raises(NoMethodError) { { [] => 1 }.symbolize_keys! }
+ end
+end