mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
update rspec should syntax to expect
This commit is contained in:
parent
1c6cd27171
commit
9887fe510c
1 changed files with 2 additions and 2 deletions
|
@ -3,13 +3,13 @@ require 'middleman-core/util'
|
|||
describe "Middleman::Util#binary?" do
|
||||
%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
|
||||
expect(Middleman::Util.binary?(File.join(File.dirname(__FILE__), "binary_spec/#{file}"))).to be_false
|
||||
end
|
||||
end
|
||||
|
||||
%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
|
||||
expect(Middleman::Util.binary?(File.join(File.dirname(__FILE__), "binary_spec/#{file}"))).to be_true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue