File: formatted_spec.py

package info (click to toggle)
python-noseofyeti 2.4.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 360 kB
  • sloc: python: 2,581; sh: 31; makefile: 12
file content (22 lines) | stat: -rw-r--r-- 338 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding: spec


def awesome(a: str) -> bool:
    return True


def hi(twos: int, word: str, b: bool):
    pass


describe "TestThing":
    async it "totes works yo", one: int, three: str:
        assert awesome(2)  # type: ignore


it "is great":
    assert False, "or is it ?"


def with_other_things():
    hi(22222, "asdfasdf", True)