Skip to content

Commit

Permalink
fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
youpy committed Sep 30, 2010
1 parent 79f7c9e commit ab87df9
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions spec/track_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
@api.should_receive(:request).with(
'track/profile',
:get ,
:id => 'TRXXHTJ1294CD8F3B3', :bucket => 'audio_summary')
:id => 'TRXXHTJ1294CD8F3B3',
:bucket => 'audio_summary')

@track.profile(:id => 'TRXXHTJ1294CD8F3B3')
end
Expand All @@ -25,7 +26,8 @@
@api.should_receive(:request).with(
'track/profile',
:get ,
:md5 => '0cf9c7faab913c62451940e6a4eb8a09', :bucket => 'audio_summary')
:md5 => '0cf9c7faab913c62451940e6a4eb8a09',
:bucket => 'audio_summary')

@track.profile(:md5 => '0cf9c7faab913c62451940e6a4eb8a09')
end
Expand All @@ -36,7 +38,8 @@
@api.should_receive(:request).with(
'track/analyze',
:post ,
:id => 'TRXXHTJ1294CD8F3B3', :bucket => 'audio_summary')
:id => 'TRXXHTJ1294CD8F3B3',
:bucket => 'audio_summary')

@track.analyze(:id => 'TRXXHTJ1294CD8F3B3')
end
Expand All @@ -45,7 +48,8 @@
@api.should_receive(:request).with(
'track/analyze',
:post,
:md5 => '0cf9c7faab913c62451940e6a4eb8a09', :bucket => 'audio_summary')
:md5 => '0cf9c7faab913c62451940e6a4eb8a09',
:bucket => 'audio_summary')

@track.analyze(:md5 => '0cf9c7faab913c62451940e6a4eb8a09')
end
Expand All @@ -56,7 +60,8 @@
@api.should_receive(:request).with(
'track/upload',
:post ,
:url => 'http://example.com/foo.mp3', :bucket => 'audio_summary')
:url => 'http://example.com/foo.mp3',
:bucket => 'audio_summary')

@track.upload(:url => 'http://example.com/foo.mp3')
end
Expand Down

0 comments on commit ab87df9

Please sign in to comment.