1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

fisting my spelling errors

This commit is contained in:
Aaron Patterson 2010-11-19 10:55:57 -08:00
parent 0cc6c46fe9
commit 87124457e5

View file

@ -1,14 +1,14 @@
require "cases/helper"
module ActiveRecord
class InvertableMigrationTest < ActiveRecord::TestCase
class InvertibleMigrationTest < ActiveRecord::TestCase
class SilentMigration < ActiveRecord::Migration
def write(text = '')
# sssshhhhh!!
end
end
class InvertableMigration < SilentMigration
class InvertibleMigration < SilentMigration
def change
create_table("horses") do |t|
t.column :content, :text
@ -17,7 +17,7 @@ module ActiveRecord
end
end
class NonInvertableMigration < SilentMigration
class NonInvertibleMigration < SilentMigration
def change
create_table("horses") do |t|
t.column :content, :text
@ -34,7 +34,7 @@ module ActiveRecord
end
def test_no_reverse
migration = NonInvertableMigration.new
migration = NonInvertibleMigration.new
migration.migrate(:up)
assert_raises(IrreversibleMigration) do
migration.migrate(:down)
@ -42,13 +42,13 @@ module ActiveRecord
end
def test_up
migration = InvertableMigration.new
migration = InvertibleMigration.new
migration.migrate(:up)
assert migration.connection.table_exists?("horses"), "horses should exist"
end
def test_down
migration = InvertableMigration.new
migration = InvertibleMigration.new
migration.migrate :up
migration.migrate :down
assert !migration.connection.table_exists?("horses")