8 lines
189 B
Python
8 lines
189 B
Python
from pigeon_magnet_solver.board import Board
|
|
|
|
|
|
def test_default():
|
|
board = Board.default_puzzle
|
|
|
|
assert board.width == 3, "Wrong width"
|
|
assert board.height == 4, "Wrong height"
|