diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-01-31 09:20:04 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-06-20 20:39:56 +0200 |
| commit | 83249eca3dbf778f54e64e3096208de44d5c7bf7 (patch) | |
| tree | 5045f7926ca67128f956c790953d9af9e0fd8b05 /gnu | |
| parent | bfc253cd9636e7b1c99445bdad781770590510fc (diff) | |
gnu: ruby-rubocop-rspec: Fix tests.
* gnu/packages/ruby.scm (ruby-rubocop-rspec):
[arguments]: Inherit from ruby-rubocop-rspec-minimal.
[propagated-inputs]: Add ruby-rubocop-factory-bot.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/ruby.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 19ee19a775b..1b72539dc41 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2115,7 +2115,11 @@ enforcing & linting tool.") (define-public ruby-rubocop-rspec (package (inherit ruby-rubocop-rspec-minimal) - (arguments '(#:test-target "spec")) + (arguments + (substitute-keyword-arguments + (package-arguments ruby-rubocop-rspec-minimal) + ((#:tests? _ #f) #t) + ((#:test-target _ "test") "spec"))) (native-inputs (list ruby-bump ruby-rack @@ -2127,7 +2131,8 @@ enforcing & linting tool.") (propagated-inputs (list ruby-rubocop ruby-rubocop-ast - ruby-rubocop-capybara)))) + ruby-rubocop-capybara + ruby-rubocop-factory-bot)))) (define-public ruby-rubocop-packaging (package |
