Commit f6edd540 authored by Adam Blank's avatar Adam Blank
Browse files

Update test_miniproject.py

parent 2bc8eea1
No related merge requests found
Showing with 0 additions and 5 deletions
+0 -5
import pytest
from miniproject.src.othello import *
def test_get_possible_moves():
assert [(0, 2), (1, 3), (3, 1)] == get_possible_moves([[' ', ' ', ' ', ' '], [
' ', 'B', 'W', ' '], ['B', 'W', 'B', ' '], ['W', ' ', 'W', 'B']], BLACK)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment