mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Fix binary_spec test for svgz - it's binary
This commit is contained in:
parent
e4b5202238
commit
cf51fe6a20
1 changed files with 2 additions and 2 deletions
|
@ -1,13 +1,13 @@
|
|||
require 'middleman-core/util'
|
||||
|
||||
describe "Middleman::Util#binary?" do
|
||||
%w(plain.txt unicode.txt unicode stars.svgz).each do |file|
|
||||
%w(plain.txt unicode.txt unicode).each do |file|
|
||||
it "recognizes #{file} as not binary" do
|
||||
Middleman::Util.binary?(File.join(File.dirname(__FILE__), "binary_spec/#{file}")).should be_false
|
||||
end
|
||||
end
|
||||
|
||||
%w(middleman.png middleman).each do |file|
|
||||
%w(middleman.png middleman stars.svgz).each do |file|
|
||||
it "recognizes #{file} as binary" do
|
||||
Middleman::Util.binary?(File.join(File.dirname(__FILE__), "binary_spec/#{file}")).should be_true
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue