aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-09-11 10:05:46 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-09-11 10:05:46 +0000
commitb646e0ddf7b1db3046d9d592060d7147f497cba3 (patch)
tree5eec78c2fb1545a3b12d02683e4ef8e0ac09592b /activerecord/test
parentc0e618cf6f7f6c4a474e4ed30e05c16620615b9a (diff)
downloadrails-b646e0ddf7b1db3046d9d592060d7147f497cba3.tar.gz
rails-b646e0ddf7b1db3046d9d592060d7147f497cba3.tar.bz2
rails-b646e0ddf7b1db3046d9d592060d7147f497cba3.zip
Rolled back broken #1814
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2203 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/active_schema_test.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/activerecord/test/active_schema_test.rb b/activerecord/test/active_schema_test.rb
deleted file mode 100644
index d2617167a0..0000000000
--- a/activerecord/test/active_schema_test.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-require 'abstract_unit'
-
-class ActiveSchemaTest < Test::Unit::TestCase
- def test_add_column_with_native_type_rejected
- assert_raises ActiveRecord::UnknownTypeError do
- add_column(:people, :varchar, :limit => 15)
- end
- end
-
- private
- def method_missing(method_symbol, *arguments)
- ActiveRecord::Base.connection.send(method_symbol, *arguments)
- end
-end \ No newline at end of file