wowget 0.4.6 → 0.4.7
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.
- data/lib/wowget.rb +1 -1
- data/lib/wowget/item.rb +1 -1
- data/spec/item_spec.rb +1 -1
- metadata +1 -1
data/lib/wowget.rb
CHANGED
data/lib/wowget/item.rb
CHANGED
data/spec/item_spec.rb
CHANGED
|
@@ -3,7 +3,7 @@ require_relative "../lib/wowget/item.rb"
|
|
|
3
3
|
describe Wowget::Item do
|
|
4
4
|
|
|
5
5
|
it "can find an item slot by its slug" do
|
|
6
|
-
Wowget::Item.inventory_slot_from_slug('held_in_off_hand').should == {:name => 'Held In Off-hand', :slug => 'held_in_off_hand'}
|
|
6
|
+
Wowget::Item.inventory_slot_from_slug('held_in_off_hand').should == {:id => 23, :name => 'Held In Off-hand', :slug => 'held_in_off_hand'}
|
|
7
7
|
end
|
|
8
8
|
|
|
9
9
|
describe "With a valid ID" do
|