9 lines
129 B
Ruby
9 lines
129 B
Ruby
# -*- ruby -*-
|
|
|
|
ENV["LC_ALL"] = "C" if RUBY_PLATFORM =~ /darwin/
|
|
|
|
desc "run unit tests"
|
|
task "test" do
|
|
sh "./cmdtest.py t"
|
|
end
|