Sha256: aec27357b8a5678567bf46ce3353b5886bc069ff074aa0886f4b4b40ae57f218

Contents?: true

Size: 1.02 KB

Versions: 4

Compression:

Stored size: 1.02 KB

Contents

Feature: Middleman Blog support

  Scenario: Non article page
    Given the Server is running at "test-blog"
    When I go to "/"
    Then I should see '<meta content="website" property="og:type" />'
    Then I should see '<meta content="http://myblog.foo.tld/" property="og:url" />'
    Then I should see '<meta content="Fixture page" property="og:title" />'

  Scenario: article page
    Given the Server is running at "test-blog"
    When I go to "/2014/04/12/my-test.html"
    Then I should see '<meta content="article" property="og:type" />'
    Then I should see '<meta content="2014-04-12T04:00:00Z" property="article:published_time" />'
    Then I should see '<meta content="ruby" property="article:tag" />'
    Then I should see '<meta content="middleman" property="article:tag" />'
    Then I should see '<meta content="blog" property="article:tag" />'
    Then I should see '<meta content="http://myblog.foo.tld/2014/04/12/my-test.html" property="og:url" />'
    Then I should see '<meta content="Fixture page" property="og:title" />'


Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
middleman-ogp-1.2.0 features/blog.feature
middleman-ogp-1.1.0 features/blog.feature
middleman-ogp-1.0.4 features/blog.feature
middleman-ogp-1.0.3 features/blog.feature