gpt4 book ai didi

ruby-on-rails - Rails 4 删除了测试生成器(尤其是 test_unit)

转载 作者:行者123 更新时间:2023-12-02 00:18:14 25 4
gpt4 key购买 nike

如何删除 test_unit 生成器以使它们从 railsgenerate 列表中消失?

我已经尝试过一些对我不起作用的方法:

config.generators do |g|
g.test_framework nil
end

使用-T选项创建应用程序。

我的rails g输出:

[a lot of other generators skipped]

TestUnit:
test_unit:controller
test_unit:helper
test_unit:integration
test_unit:mailer
test_unit:model
test_unit:plugin
test_unit:scaffold

最佳答案

在您的 config/application.rb 中进行生成设置,您可以隐藏一些您不想看到的生成器。例如:

config.generators do |g|
g.hidden_namespaces << :test_unit << :erb
g.test_framework :mini_test
g.template_engine :slim
# ...
end

关于ruby-on-rails - Rails 4 删除了测试生成器(尤其是 test_unit),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15297981/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com