Browser activity
----------------

Make some notes.

  >>> from plonehrm.notes.notes import Notes
  >>> nts = Notes()
  >>> nts.addNote(u"My first little note.")
  >>> nts.addNote(u"Noteworthy note.")

Add those notes to content in the site.

  >>> context = self.folder
  >>> context.notes = nts

Now we should be able to see our notes displayed from the resulting
unicode string.

  >>> from plonehrm.notes.browser.notes import NotesViewlet
  >>> viewlet = NotesViewlet(context, None, None, None).__of__(context)
  >>> rendered = viewlet.render()
  >>> type(rendered)
  <type 'unicode'>
  >>> u'My first little note.' in rendered
  True
