Sha256: 76bd5e0efac98b81bbefbd7edf8e7b9f10f36b4b5729e440107338967e97ecf5
Contents?: true
Size: 407 Bytes
Versions: 4
Compression:
Stored size: 407 Bytes
Contents
# Copyright (c) 2023 Jerome Arbez-Gindre # frozen_string_literal: true require('rspec/core/rake_task') namespace 'test' do RSpec::Core::RakeTask.new(:spec) do |t| t.rspec_opts = ['--options config/rspec'] end desc 'Runs all unit tests and acceptance tests' task(all: ['test:spec']) end desc 'Synonym for test:spec' task(spec: 'test:spec') desc 'Synonym for test:all' task(test: 'test:all')
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
safe_ruby-1.0.5 | tasks/test.rake |
asciidoctor-defmastership-1.0.10 | tasks/test.rake |
asciidoctor-defmastership-1.0.9 | tasks/test.rake |
asciidoctor-defmastership-1.0.8 | tasks/test.rake |