You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: slides/automation-qa/preprogramming-course.markdown
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -120,6 +120,8 @@ title: Pre Programming Course
120
120
121
121
- Interaction with elements
122
122
123
+
Link to course [video](https://drive.google.com/file/d/1o0VbIrVPjhlHYg0jvLQXKXzY87GxzRDV/view?usp=sharing)
124
+
123
125
---
124
126
125
127
# Git
@@ -166,6 +168,8 @@ title: Pre Programming Course
166
168
167
169
- Best practices for [commits](https://www.git-tower.com/learn/git/ebook/en/command-line/appendix/best-practices), [pull request](https://github.community/t5/Support-Protips/Best-practices-for-pull-requests/ba-p/4104), [branches](https://nvie.com/posts/a-successful-git-branching-model/), [etc](https://git-scm.com/book/ru/v2)
168
170
171
+
Link to course [video](https://drive.google.com/file/d/1ZwRju6syDDfcxx4m8YBBGyi-aExkJgQs/view?usp=sharing)
Copy file name to clipboardExpand all lines: slides/automation-qa/rspec.markdown
+59Lines changed: 59 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,8 @@ title: RSpec
11
11
12
12
RSpec is a unit test framework for the Ruby programming language. Tests written in RSpec focus on the "behavior" of an application being tested. RSpec does not put emphasis on, how the application works but instead on how it behaves, in other words, what the application actually does.
13
13
14
+
Link to course [video](https://drive.google.com/file/d/1vnGkfeGMWVhZ3Kf8davCwpt5loSz-AUc/view?usp=sharing)
15
+
14
16
---
15
17
16
18
# RSpec Test Types
@@ -1198,6 +1200,63 @@ describe "something", type: :feature do
1198
1200
end
1199
1201
```
1200
1202
1203
+
--
1204
+
1205
+
### If your tests are time dependent you can use travel_to
0 commit comments