Sha256: 0495f033a654c4a97388932ff5ad652cbd2aff745996f9ddbc2df0d088f70201

Contents?: true

Size: 297 Bytes

Versions: 1

Compression:

Stored size: 297 Bytes

Contents

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

1 entries across 1 versions & 1 rubygems

Version Path
aid-0.1.3 examples/test.rb