RSPEC描述耙任务名称空间
我想测试耙任务的特定命名空间,并且我会从Rubocop中获得错误。
desc 'This namespace is test'
namespace :test_namespace do
task test_task: :environment do
在我的耙子任务上,我有以下内容
RSpec.describe 'test_namespace' do
describe 'test_task' do
给我一个错误
The first argument to describe should be the class or module being tested.
I want to test a specific namespace of rake tasks and I am getting an error from rubocop.
desc 'This namespace is test'
namespace :test_namespace do
task test_task: :environment do
On my rake task I have the following
RSpec.describe 'test_namespace' do
describe 'test_task' do
The above gives me an error
The first argument to describe should be the class or module being tested.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加类型::任务修复rubocop错误
例子:
Adding type: :task fix rubocop error
example:
您只需要直接将课程直接传递到您的描述测试行中,而不是字符串。在您的情况下:
You just need to pass the class straight into your describe line of your test, instead of a string. In your case: