├── .gitignore ├── CNAME ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── _includes ├── footer.html ├── google-analytics.html ├── head.html ├── header.html └── twitter-button.html ├── _layouts ├── default.html ├── home.html └── post.html ├── _posts ├── 2016-11-30-1-introduction.markdown └── 2017-02-11-2-assertions.markdown ├── assets ├── logo.png ├── main.scss └── thumbnails │ ├── 1.jpg │ └── 2.jpg ├── docs ├── CNAME ├── assets │ ├── logo.png │ ├── main.css │ └── thumbnails │ │ ├── 1.jpg │ │ └── 2.jpg ├── episodes │ ├── 1-introduction.html │ └── 2-assertions.html ├── feed.xml ├── feed.xslt.xml ├── index.html ├── license └── readme.md ├── index.md ├── license └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | avacasts.com 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | ruby RUBY_VERSION 3 | 4 | gem "jekyll", "3.3.1" 5 | 6 | group :jekyll_plugins do 7 | gem "jekyll-feed", "~> 0.6" 8 | end 9 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | addressable (2.5.0) 5 | public_suffix (~> 2.0, >= 2.0.2) 6 | colorator (1.1.0) 7 | ffi (1.9.14) 8 | forwardable-extended (2.6.0) 9 | jekyll (3.3.1) 10 | addressable (~> 2.4) 11 | colorator (~> 1.0) 12 | jekyll-sass-converter (~> 1.0) 13 | jekyll-watch (~> 1.1) 14 | kramdown (~> 1.3) 15 | liquid (~> 3.0) 16 | mercenary (~> 0.3.3) 17 | pathutil (~> 0.9) 18 | rouge (~> 1.7) 19 | safe_yaml (~> 1.0) 20 | jekyll-feed (0.8.0) 21 | jekyll (~> 3.3) 22 | jekyll-sass-converter (1.5.0) 23 | sass (~> 3.4) 24 | jekyll-watch (1.5.0) 25 | listen (~> 3.0, < 3.1) 26 | kramdown (1.13.1) 27 | liquid (3.0.6) 28 | listen (3.0.8) 29 | rb-fsevent (~> 0.9, >= 0.9.4) 30 | rb-inotify (~> 0.9, >= 0.9.7) 31 | mercenary (0.3.6) 32 | pathutil (0.14.0) 33 | forwardable-extended (~> 2.6) 34 | public_suffix (2.0.4) 35 | rb-fsevent (0.9.8) 36 | rb-inotify (0.9.7) 37 | ffi (>= 0.5.0) 38 | rouge (1.11.1) 39 | safe_yaml (1.0.4) 40 | sass (3.4.22) 41 | 42 | PLATFORMS 43 | ruby 44 | 45 | DEPENDENCIES 46 | jekyll (= 3.3.1) 47 | jekyll-feed (~> 0.6) 48 | 49 | RUBY VERSION 50 | ruby 2.1.3p242 51 | 52 | BUNDLED WITH 53 | 1.13.6 54 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: AVA Casts 2 | description: > 3 | AVA Casts is a series of short screencasts about AVA test framework. 4 | baseurl: "" 5 | url: "" 6 | twitter_username: vadimdemedes 7 | github_username: vadimdemedes 8 | google_analytics: UA-56814364-8 9 | 10 | permalink: /episodes/:slug 11 | 12 | markdown: kramdown 13 | gems: 14 | - jekyll-feed 15 | exclude: 16 | - Gemfile 17 | - Gemfile.lock 18 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/google-analytics.html: -------------------------------------------------------------------------------- 1 | 11 | 12 | -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 |In this episode we’re going to learn what AVA is, how to set it up and after that we’ll check out a few of AVA’s features.
75 | 76 |Resources:
77 |In this episode we’re going to learn and practice the essentials of writing tests - assertions.
75 | 76 |Resources:
77 |In this episode we’re going to learn and practice the essentials of writing tests - assertions.
79 | 80 |In this episode we’re going to learn what AVA is, how to set it up and after that we’ll check out a few of AVA’s features.
104 | 105 |