mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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>
This commit is contained in:
parent
bfc253cd96
commit
83249eca3d
1 changed files with 7 additions and 2 deletions
|
@ -2115,7 +2115,11 @@ enforcing & linting tool.")
|
||||||
(define-public ruby-rubocop-rspec
|
(define-public ruby-rubocop-rspec
|
||||||
(package
|
(package
|
||||||
(inherit ruby-rubocop-rspec-minimal)
|
(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
|
(native-inputs
|
||||||
(list ruby-bump
|
(list ruby-bump
|
||||||
ruby-rack
|
ruby-rack
|
||||||
|
@ -2127,7 +2131,8 @@ enforcing & linting tool.")
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list ruby-rubocop
|
(list ruby-rubocop
|
||||||
ruby-rubocop-ast
|
ruby-rubocop-ast
|
||||||
ruby-rubocop-capybara))))
|
ruby-rubocop-capybara
|
||||||
|
ruby-rubocop-factory-bot))))
|
||||||
|
|
||||||
(define-public ruby-rubocop-packaging
|
(define-public ruby-rubocop-packaging
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue