minor: better test names

This commit is contained in:
Kyle Banker 2010-03-30 13:51:05 -04:00
parent 99d421d950
commit 30b6ca6270
1 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ class GridTest < Test::Unit::TestCase
@metadata = {'app' => 'photos'}
end
should "store the file without a filename" do
should "store the file with the old filename api" do
id = @grid.put(@data, 'sample', :metadata => @metadata)
file = @grid.get(id)
assert_equal 'sample', file.filename
@ -67,7 +67,7 @@ class GridTest < Test::Unit::TestCase
assert_equal @metadata, file.metadata
end
should "store with filename and metadata" do
should "store with filename and metadata with the new api" do
id = @grid.put(@data, :filename => 'sample', :metadata => @metadata)
file = @grid.get(id)
assert_equal 'sample', file.filename