A fork of hyde, the static site generation. Some patches will be pushed upstream.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

39 lines
1.2 KiB

  1. # -*- coding: utf-8 -*-
  2. """
  3. Use nose
  4. `$ pip install nose`
  5. `$ nosetests`
  6. """
  7. from hyde.generator import Generator
  8. from hyde.site import Site
  9. from fswrap import File, Folder
  10. RJS_SOURCE = File(__file__).parent.child_folder('requirejs')
  11. TEST_SITE = File(__file__).parent.parent.child_folder('_test')
  12. class TestRequireJS(object):
  13. def setUp(self):
  14. TEST_SITE.make()
  15. TEST_SITE.parent.child_folder('sites/test_jinja').copy_contents_to(TEST_SITE)
  16. RJS_SOURCE.copy_contents_to(TEST_SITE.child('content/media/js'))
  17. File(TEST_SITE.child('content/media/js/app.js')).delete()
  18. def tearDown(self):
  19. TEST_SITE.delete()
  20. def test_can_execute_rjs(self):
  21. s = Site(TEST_SITE)
  22. s.config.plugins = ['hyde.ext.plugins.requirejs.RequireJSPlugin']
  23. source = TEST_SITE.child('content/media/js/rjs.conf')
  24. target = File(Folder(s.config.deploy_root_path).child('media/js/app.js'))
  25. gen = Generator(s)
  26. gen.generate_resource_at_path(source)
  27. assert target.exists
  28. text = target.read_all()
  29. expected_text = File(RJS_SOURCE.child('app.js')).read_all()
  30. assert text == expected_text
  31. return