File size: 169 Bytes
1daae06
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import app

def test_sketch_image():
    img = cv2.imread('examples/1.jpg')
    output = app.sketch_image(img)
    assert output.shape == img.shape

test_sketch_image()