#!/usr/bin/env ruby # coding: utf-8 current_dir = File.dirname(File.expand_path(__FILE__)) # All acceptance test files begins with 'at_' acceptance_test_files = Dir["#{current_dir}/at_*"] # Load each acceptance test file making # all tests to be run acceptance_test_files.each { |file| load file } # Print a report report = <