Navigation | Overlay |
---|---|
t Navigate files | h Toggle hits |
y Change url to tip of branch | m Toggle misses |
b / v Jump to prev/next hit line | p Toggle partial |
z / x Jump to prev/next missed or partial line | 1..9 Toggle flags |
shift + o Open current page in GitHub | a Toggle all on |
/ or ? Show keyboard shortcuts dialog | c Toggle context lines or commits |
1 |
"""
|
|
2 |
Unit and regression test for the quanformer package.
|
|
3 |
"""
|
|
4 |
|
|
5 |
# Import package, test suite, and other packages as needed
|
|
6 |
import quanformer |
|
7 |
import pytest |
|
8 |
import sys |
|
9 |
|
|
10 |
def test_quanformer_imported(): |
|
11 |
"""Sample test, will always pass so long as import statement worked"""
|
|
12 |
assert "quanformer" in sys.modules |
Read our documentation on viewing source code .