1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

remove legacy spec file

This commit is contained in:
Wesley Beary 2010-01-04 21:41:40 -08:00
parent 7f4a08ae69
commit 124394b1bc

View file

@ -1,18 +0,0 @@
require File.dirname(__FILE__) + '/../../../spec_helper'
describe 'Fog::AWS::S3::Owner' do
describe "#initialize" do
it "should remap attributes from parser" do
owner = Fog::AWS::S3::Owner.new(
'DisplayName' => 'name',
'ID' => 'id'
)
owner.display_name.should == 'name'
owner.id.should == 'id'
end
end
end