File: fake_module.py

package info (click to toggle)
app-model 0.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 700 kB
  • sloc: python: 5,484; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 149 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
from unittest.mock import Mock

GLOBAL_MOCK = Mock(name="GLOBAL")


def run_me() -> bool:
    GLOBAL_MOCK()
    return True


attr = "not a callble"