spec/hallon/hallon_spec.rb in hallon-0.8.0 vs spec/hallon/hallon_spec.rb in hallon-0.9.0
- old
+ new
@@ -1,12 +1,13 @@
+# coding: utf-8
describe Hallon do
describe "VERSION" do
specify { Hallon::VERSION.should be_a String }
end
describe "API_VERSION" do
- specify { Hallon::API_VERSION.should == 9 }
+ specify { Hallon::API_VERSION.should == 10 }
end
describe "API_BUILD" do
specify { Hallon::API_BUILD.should be_a String }
end
@@ -14,7 +15,25 @@
describe "URI" do
subject { Hallon::URI }
example_uris.keys.each do |uri|
it { should match uri }
end
+ end
+
+ describe "object callbacks" do
+ pending <<-REASON
+
+ Once callbacks are implemented in libmockspotify, we should also
+ test them on the following objects:
+
+ - Session
+ - Image
+ - AlbumBrowse
+ - ArtistBrowse
+ - Search
+ - Playlist
+ - PlaylistContainer
+ - Toplist
+ - Inbox
+ REASON
end
end