Skip to content

Instantly share code, notes, and snippets.

View abhi-github101's full-sized avatar

abhi-github101

View GitHub Profile
@abhi-github101
abhi-github101 / python_unittest.md
Last active March 29, 2021 15:28
Python's unittest package rundown

Unittest

Concepts:

  • Test Fixtures: setup and teardown
  • Test Case: unit of testing
  • Test Suite: group of test and/or suites
  • Test Runner: orchestrates execution of tests

methods, functions name must start with test (default)

@abhi-github101
abhi-github101 / markdown_syntax.md
Created September 25, 2020 13:00
Commonly used markdown components

Markdown Syntax

file extension .md or .markdown

Property Syntax
Headings H1(#), H2(##), ..., H6(######)
Italic *text* *Italic* ➡️ Italic
Bold **text** **Bold** ➡️ Bold
Strikethrough ~~text~~ ~~Strike~~ ➡️ Strike