Skip to content

Commit f529f18

Browse files
committed
updated
1 parent d6da6f5 commit f529f18

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

_layouts/post.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ <h1>{{ page.title }}</h1>
1919

2020
<p class="lead">
2121
Published on {{ page.date | date: "%B %d, %Y" }}
22+
{% if page.author %}
23+
<br>by <strong>{{ page.author }}</strong>
24+
{% endif %}
2225
</p>
2326
<div class="post">
2427
{{ content }}

_posts/2016-12-21-writing-better-tests--expectation-vs-implementation.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
layout: post
33
title: "Writing Better Tests: Expectation vs Implementation"
44
date: 2016-12-21 01:03:50
5+
author: Michael Bodnarchuk @davert
56
---
67

78

_posts/2017-04-21-writing-better-tests--obtaining-specification.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
layout: post
33
title: "Writing Better Tests: Obtaining Specification"
44
date: 2017-04-21 01:03:50
5+
author: Michael Bodnarchuk @davert
56
---
67

78
When you start implement testing in your development process you should always ask: which tests are important for this project. And there is no general answer to this question. "Test everything, everywhere" is not a good solution as well, by writing more and more lines of code you won't stable software. Tests should be driven by specification, and specification comes from your business. Depending on that you should choose which areas are more important to cover with tests and which are less.

0 commit comments

Comments
 (0)