We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96eac10 commit d9a82ecCopy full SHA for d9a82ec
1 file changed
tests/test_example/test_hello.py
@@ -1,23 +1,6 @@
1
"""Tests for hello function."""
2
import pytest
3
4
-from pythoncms.example import hello
5
6
-
7
-@pytest.mark.parametrize(
8
- ("name", "expected"),
9
- [
10
- ("Jeanette", "Hello Jeanette!"),
11
- ("Raven", "Hello Raven!"),
12
- ("Maxine", "Hello Maxine!"),
13
- ("Matteo", "Hello Matteo!"),
14
- ("Destinee", "Hello Destinee!"),
15
- ("Alden", "Hello Alden!"),
16
- ("Mariah", "Hello Mariah!"),
17
- ("Anika", "Hello Anika!"),
18
- ("Isabella", "Hello Isabella!"),
19
- ],
20
-)
21
-def test_hello(name, expected):
22
- """Example test with parametrization."""
23
- assert hello(name) == expected
+def test_pythoncms():
+ assert 1 == 1
0 commit comments