features/jekyll-s3.feature in jekyll-s3-0.0.3 vs features/jekyll-s3.feature in jekyll-s3-0.0.4
- old
+ new
@@ -3,19 +3,19 @@
In order to push my jekyll site to s3
As a blogger
I want to run jekyll-s3 and say OMG it just worked!
Scenario: Run jekyll-s3 in the wrong directory
- When I run "jekyll-s3"
+ When I run `jekyll-s3`
Then the output should contain:
"""
I can't find any directory called _site. Are you in the right directory?
"""
Scenario: Run jekyll-s3 for the first time
Given a directory named "_site"
- When I run "jekyll-s3"
+ When I run `jekyll-s3`
Then the output should contain:
"""
I've just generated a file called _jekyll_s3.yml. Go put your details in it!
"""
Then the file "_jekyll_s3.yml" should contain:
@@ -26,11 +26,11 @@
"""
Scenario: Run jekyll-s3 with an empty configuration file
Given a directory named "_site"
And an empty file named "_jekyll_s3.yml"
- When I run "jekyll-s3"
+ When I run `jekyll-s3`
Then the output should contain:
"""
I can't parse the file _jekyll_s3.yml. It should look like this:
s3_id: YOUR_AWS_S3_ACCESS_KEY_ID
s3_secret: YOUR_AWS_S3_SECRET_ACCESS_KEY
@@ -42,11 +42,11 @@
And a file named "_jekyll_s3.yml" with:
"""
s3_id: YOUR_AWS_S3_ACCESS_KEY_ID
this is not yaml
"""
- When I run "jekyll-s3"
+ When I run `jekyll-s3`
Then the output should contain:
"""
I can't parse the file _jekyll_s3.yml. It should look like this:
s3_id: YOUR_AWS_S3_ACCESS_KEY_ID
s3_secret: YOUR_AWS_S3_SECRET_ACCESS_KEY
@@ -59,11 +59,11 @@
"""
s3_id: YOUR_AWS_S3_ACCESS_KEY_ID
s3_secret: YOUR_AWS_S3_SECRET_ACCESS_KEY
s3_bucket:
"""
- When I run "jekyll-s3"
+ When I run `jekyll-s3`
Then the output should contain:
"""
I can't parse the file _jekyll_s3.yml. It should look like this:
s3_id: YOUR_AWS_S3_ACCESS_KEY_ID
s3_secret: YOUR_AWS_S3_SECRET_ACCESS_KEY
@@ -76,12 +76,10 @@
"""
s3_id: YOUR_AWS_S3_ACCESS_KEY_ID
s3_secret: YOUR_AWS_S3_SECRET_ACCESS_KEY
s3_bucket: your.blog.bucket.com
"""
- When I run "jekyll-s3"
+ When I run `jekyll-s3`
Then the output should contain:
"""
- Uploading _site/* to your.blog.bucket.com
+ Deploying _site/* to your.blog.bucket.com
"""
-
-