Vote #66340
完了Make it harder to ruin your database
100%
説明
New Rails apps have
ENV["RAILS_ENV"] = "test"
in test_helper.rb.
You have
ENV["RAILS_ENV"] ||= "test"
Good I have backups. :)
Please add this line:
abort "Preventing you from running tests in '#{ENV['RAILS_ENV']}' environment." unless ENV["RAILS_ENV"] =~ /test/
journals
I've updated test_helper.rb in r3840 to force the test environment.
--------------------------------------------------------------------------------
Eric, I think you forgot about test_pgsql and test_sqlite3… That's why I'm regexp.
--------------------------------------------------------------------------------
Alexey Palazhchenko wrote:
> Eric, I think you forgot about test_pgsql and test_sqlite3… That's why I'm regexp.
I don't like having those extra environments and want to remove them in a future version.
--------------------------------------------------------------------------------
Eric Davis wrote:
> Alexey Palazhchenko wrote:
> > Eric, I think you forgot about test_pgsql and test_sqlite3… That's why I'm regexp.
>
> I don't like having those extra environments and want to remove them in a future version.
Does this mean that in a future version Redmine support mysql only?
--------------------------------------------------------------------------------
xt zhang wrote:
> Does this mean that in a future version Redmine support mysql only?
Definitely not. MySQL, PostgreSQL and SQLite3 will be supported in foreseeable future.
--------------------------------------------------------------------------------
xt zhang wrote:
> Does this mean that in a future version Redmine support mysql only?
Not at all, only that I'd like to remove the duplicate test environments in the future. I run my Redmine on Postgres, I have clients running on MySQL and Postgres, and I use SQLite3 for testing.
--------------------------------------------------------------------------------