Commit e559ce8e by jyurek

Error in tests

git-svn-id: https://svn.thoughtbot.com/plugins/paperclip/trunk@420 7bbfaf0e-4d1d-0410-9690-a8bb5f8ef2aa
parent 52fb528a
......@@ -44,12 +44,12 @@ class GeometryTest < Test::Unit::TestCase
should "ensure the modifier is nil if only one dimension present" do
assert @geo = Paperclip::Geometry.parse("123x")
assert_nil mod, @geo.modifier
assert_nil @geo.modifier
end
should "ensure the modifier is nil if not present" do
assert @geo = Paperclip::Geometry.parse("123x456")
assert_nil mod, @geo.modifier
assert_nil @geo.modifier
end
['>', '<', '#', '@', '%', '^', '!'].each do |mod|
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment