We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bdaf60 commit cfef767Copy full SHA for cfef767
.vscode/python.code-snippets
@@ -13,20 +13,19 @@
13
// "description": "Log output to console"
14
// }
15
"Insert a Python test": {
16
- "prefix": "test-aaa",
+ "prefix": "test-gwt",
17
"body": [
18
"def test_$1():",
19
- " # Arrange",
20
- " $2",
21
- " ",
22
- " # Act",
23
- " $3",
24
25
- " # Assert",
26
- " $4",
+ " # Given",
+ " $2",
+ " ",
+ " # When",
+ " $3",
+ " # Then",
+ " $4",
27
"",
28
],
29
- "description": "Create AAA test"
+ "description": "Create Given-When-Then test"
30
}
31
-
32
0 commit comments