Add jar specs

This commit is contained in:
Jordan Sissel 2012-11-01 23:05:21 -07:00
parent d0608971bb
commit c35e557ab8

12
spec/jar.rb Normal file
View file

@ -0,0 +1,12 @@
require "insist"
describe "logstash jar features" do
before :each do
@jar_root = __FILE__.split("!").first
end
it "must contain GeoCityLite.dat" do
path = File.join(@jar_root, "GeoCityLite.dat")
insist { File }.exists?(path)
end
end