Sha256: 4f4dd18d96cc3e6a418eeaa6eac83de81c383c464eb56832901847a4f2c40807

Contents?: true

Size: 333 Bytes

Versions: 4

Compression:

Stored size: 333 Bytes

Contents

# frozen_string_literal: true

class Test < Aid::Script
  def self.description
    'Runs full test suite'
  end

  def self.help
    <<~HELP
      Usage: aid test
       Runs all the tests that are needed for acceptance.
    HELP
  end

  def run
    Rubocop.run
    Eslint.run
    Mocha.run
    SlimLint.run
    Rspec.run
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
aid-0.2.2 examples/test.rb
abtion-aid-0.3.2 examples/test.rb
abtion-aid-0.3.1 examples/test.rb
abtion-aid-0.2.0 examples/test.rb