module Gemmy::Tests

Test out the gem Can be called from the command line: gemmy test

Constants

TestSets

Public Class Methods

run() click to toggle source
# File lib/gemmy/tests.rb, line 7
def self.run
  TestSets.each &method(:run_test_class)
end
run_test_class(klass) click to toggle source
# File lib/gemmy/tests.rb, line 11
def self.run_test_class(klass)
  klass.run
  # Unless a test raises an error, it's been run
  puts "#{klass} passed".green
end