Skip to content

Commit

Permalink
TDD Pandas - [RED] Test if result has results grouped by students group
Browse files Browse the repository at this point in the history
  • Loading branch information
diligejy committed Jan 19, 2024
1 parent c4731aa commit 5fe340c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions PyCon_PL/Test_Driven_Pandas/tests/test_gradebook.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pandas as pd

def test_x():
def test_results_are_grouped_by_student_group():
students = [{
"ID" : 1,
"Name" : "Doe, John",
Expand All @@ -9,4 +9,6 @@ def test_x():
"Group" : 1,
}]
students_df = pd.DataFrame(data=students).set_index("ID")
assert False

result = {}
assert list(result.keys()) == [1]

0 comments on commit 5fe340c

Please sign in to comment.