popcap 0.9.1 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/pop_cap/audio_file.rb +1 -0
- data/lib/pop_cap/version.rb +1 -1
- data/spec/lib/pop_cap/audio_file_spec.rb +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b5015395f59243962df0c16cdf70a6e9c9de3d6
|
4
|
+
data.tar.gz: 7b0608fa5fc3f5fc7e69a8d8e03cb6fb37706cf7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cccf719a0f07c5c48ccca22fa2a8b5c13486dac590d987af767beabe402712bd4073b94c7312c39ad54ee6cbfddc11a5dc122f1f0d30cfff147954aac0c51d52
|
7
|
+
data.tar.gz: 0cdd2167a5b1e03ed808a944754ed2ca1d5908e07889c63523f073ea1c96def37dc1f25aefdfba2e0f52133845a9fb2d7dbbb31f0605ed9d0c9b685e1b2d3b47
|
data/lib/pop_cap/audio_file.rb
CHANGED
data/lib/pop_cap/version.rb
CHANGED
@@ -102,6 +102,11 @@ module PopCap
|
|
102
102
|
audio_file.update(updates)
|
103
103
|
expect(audio_file.tags.artist).to eq 'New Artist'
|
104
104
|
end
|
105
|
+
|
106
|
+
it 'returns updated hash' do
|
107
|
+
updates = {artist: 'New Artist'}
|
108
|
+
expect(audio_file.update(updates)).to eq audio_file.tags
|
109
|
+
end
|
105
110
|
end
|
106
111
|
|
107
112
|
describe '#convert' do
|