Ricardo Wurmus writes: > Christopher Baines writes: > >> Required for ruby-webmock. >> >> * gnu/packages/ruby.scm (ruby-crack): New variable. > […] >> + (replace 'check >> + (lambda _ >> + (for-each (lambda (file) >> + (display file)(display "\n") >> + (invoke "ruby" file)) >> + (find-files "spec" ".*rb$")) >> + #t))))) > > I don’t see a “spec” directory in the git repository. Do the Gem > contents differ from the repo? Good spot. There isn't a "spec" directory, it's instead called "test". So no tests were actually being run. I've fixed this now. + (replace 'check + (lambda _ + (for-each (lambda (file) + (display file)(display "\n") + (invoke "ruby" "-Ilib" "-Itest" file)) + (find-files "test" ".*rb$")) + #t)))))