Skip to content

Commit

Permalink
Merge pull request #1 from pyembed/v0.7.0-dev
Browse files Browse the repository at this point in the history
Release v0.7.0
  • Loading branch information
matt-thomson committed Jan 20, 2014
2 parents 2a502f2 + d108ef9 commit b8b04b2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Changes
=======

v0.7.0, 2014-01-20
------------------

Changes to tests only.

v0.6.0, 2014-01-05
------------------

Expand Down
8 changes: 4 additions & 4 deletions pyembed/mustache/test/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

from pyembed.core import consumer
from pyembed.core import PyEmbed
from pyembed.mustache import MustacheRenderer

from hamcrest import assert_that, equal_to


def test_should_embed_with_mustache_template():
embedding = consumer.embed(
'http://www.youtube.com/watch?v=qrO4YZeyl0I',
renderer=MustacheRenderer('pyembed/mustache/test/fixtures'))
renderer = MustacheRenderer('pyembed/mustache/test/fixtures')
embedding = PyEmbed(renderer).embed(
'http://www.youtube.com/watch?v=qrO4YZeyl0I')
assert_that(embedding, equal_to(
'Lady Gaga - Bad Romance by LadyGagaVEVO from ' +
'http://www.youtube.com/watch?v=qrO4YZeyl0I'))
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def run_tests(self):

setup(
name='pyembed-mustache',
version='0.6.1',
version='0.7.0',
author='Matt Thomson',
author_email='matt.thomson@cantab.net',
url='https://github.com/pyembed/pyembed-mustache',
Expand Down

0 comments on commit b8b04b2

Please sign in to comment.