Esempio n. 1
0
 def db(self, tmpdir):
     db = ShortcutsDb(os.path.join(str(tmpdir), 'shortcuts.json'))
     db.put_shortcut('google', 'g', 'http://google', 'icon', True)
     db.put_shortcut('google maps', 'maps', 'http://maps.google', 'icon', True)
     db.put_shortcut('google calendar', 'cal', 'http://cal.google', 'icon', True)
     db.put_shortcut('google music', 'm', 'http://music.google', 'icon', True)
     return db
Esempio n. 2
0
 def db(self, tmpdir):
     db = ShortcutsDb(os.path.join(str(tmpdir), 'shortcuts.json'))
     db.put_shortcut('google', 'g', 'http://google', 'icon', True, False)
     db.put_shortcut('google maps', 'maps', 'http://maps.google', 'icon',
                     True, False)
     db.put_shortcut('google calendar', 'cal', 'http://cal.google', 'icon',
                     True, False)
     db.put_shortcut('google music', 'm', 'http://music.google', 'icon',
                     True, False)
     return db
Esempio n. 3
0
 def db(self):
     db = ShortcutsDb('test')
     db.put_shortcut('google', 'g', 'http://google', 'icon', True)
     db.put_shortcut('google maps', 'maps', 'http://maps.google', 'icon',
                     True)
     db.put_shortcut('google calendar', 'cal', 'http://cal.google', 'icon',
                     True)
     db.put_shortcut('google music', 'm', 'http://music.google', 'icon',
                     True)
     return db