Flowdock
method

assert_migration

Importance_1
v3.0.0 - Show latest stable - 0 notes - Class: Rails::Generators::TestCase
assert_migration(relative, *contents, &block) public

Asserts a given file does not exist. You need to supply an absolute path or a path relative to the configured destination:

  assert_migration "db/migrate/create_products.rb"

This method manipulates the given path and tries to find any migration which matches the migration name. For example, the call above is converted to:

  assert_file "db/migrate/003_create_products.rb"

Consequently, assert_migration accepts the same arguments has assert_file.

Show source
Register or log in to add new notes.