Search code examples
ruby-on-railsfunctional-testing

Rails functional testing without migrations


The name pretty much says it all. Does anyone know how to accomplish functional testing when you are not using migrations in Rails? I'd be open to any advice or third party libraries (if there are any). I thought of creating my own plugin to address this but it seems like a pretty big task and would rather not do this unless necessary.

Thanks in advance.


Solution

  • It appears that there is no "easy" way to do this. I'm looking into RSpec rails to see if it can be modified to not use migrations.