Conditions | 1 |
Total Lines | 21 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | # !/usr/bin/python |
||
19 | def setUp(self): |
||
20 | """Set up the item to add |
||
21 | |||
22 | :return: |
||
23 | """ |
||
24 | sticker = Sticker( |
||
25 | name="Howling Dawn", |
||
26 | image="some_sticker_image_link", |
||
27 | wear_value=0.43092 |
||
28 | ) |
||
29 | |||
30 | self._item = Item( |
||
31 | app_id=730, |
||
32 | class_id=12345, |
||
33 | context_id=2, |
||
34 | instance_id=54321, |
||
35 | price=109999, |
||
36 | wear_value=0.14305446, |
||
37 | image="some_item_image_link", |
||
38 | inspect_link="some_steam_inspect_link", |
||
39 | stickers=[sticker] |
||
40 | ) |
||
57 |