ruby-ezmlm/.pryrc
Mahlon E. Smith 7339802f34 Everything is workin!
- Add a corpus of test messages to the spec data, with
   the script that generated them.
 - Add native objects for Authors, Messages, and Threads.
 - Tests!
2017-05-12 11:09:36 -07:00

18 lines
331 B
Ruby

#!/usr/bin/ruby
$LOAD_PATH.unshift( 'lib' )
require 'pathname'
listpath = Pathname.new( __FILE__ ).dirname + 'spec' + 'data'
begin
require 'ezmlm'
list = Ezmlm::List.new( listpath + 'testlist' )
rescue Exception => e
$stderr.puts "Ack! Ezmlm libraries failed to load: #{e.message}\n\t" +
e.backtrace.join( "\n\t" )
end