diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-14 16:41:25 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-14 16:41:25 +0000 |
commit | 2115aa33f5a05738aef33060595aac6eee1762a0 (patch) | |
tree | 75dee415c06da7e0bac61c5aa9360fea69c39be9 /t | |
parent | 88ed0643a43bf27093229486d2ad8227f6ec2c18 (diff) |
Moved parser code into its own file, and updated main script + test suite to use it.
Diffstat (limited to 't')
-rwxr-xr-x | t/test-parser.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/t/test-parser.rb b/t/test-parser.rb index e92c5e8..dea0548 100755 --- a/t/test-parser.rb +++ b/t/test-parser.rb @@ -1,9 +1,10 @@ -#!/usr/bin/ruby1.8 -I./bin/ -I../bin/ +#!/usr/bin/ruby1.8 -I./lib/ -I../lib/ require 'json' require 'test/unit' -load 'custodian-enqueue' +require 'custodian/parser' + |