test/glob_test.rb in sinatra-assetpack-0.2.6 vs test/glob_test.rb in sinatra-assetpack-0.2.7
- old
+ new
@@ -19,9 +19,11 @@
end
should "match double-star globs recursively" do
app.stubs(:development?).returns(true)
get '/a'
+ assert body.include?("lvl1.")
+ assert body.include?("lvl2.")
assert body.include?("a/b/c1/hello.")
assert body.include?("a/b/c2/hi.")
assert body.include?("a/b/c2/hola.")
end