"""
hurry.jquerytools basic tests
=============================

Here are some basic tests for hurry.slimbox.

Let's set up a way to render URLs; typically the framework has already
done this::

  >>> class Plugin(object):
  ...   def get_library_url(self, library):
  ...     return 'http://localhost/static/%s' % (library.name)
  >>> from hurry.resource import register_plugin
  >>> register_plugin(Plugin())



Render the inclusion::

  >>> from hurry.resource import NeededInclusions
  >>> from hurry.jquerytools import jquerytools
  >>> needed = NeededInclusions()
  >>> needed.need(jquerytools)
  >>> print needed.render()
  <script type="text/javascript" src="http://localhost/static/jquery_lib/jquery-1...js"></script>
  <script type="text/javascript" src="http://localhost/static/JqueryToolsLibrary/jquery.tools.min.js"></script>

"""
