Here are the examples of the python api bokeh.resources._get_cdn_urls taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Examples
3
View Source File : test_resources.py
License : MIT License
Project Creator : rthorst
License : MIT License
Project Creator : rthorst
def test_get_cdn_urls(self):
dev_version = "0.0.1dev2"
result = _get_cdn_urls(version=dev_version)
url = result['urls'](["bokeh"], 'js')[0]
assert 'bokeh/dev' in url
def test_cdn(self):