-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import pytest | ||
from beignet.transforms import Transform | ||
|
||
|
||
class TestTransform: | ||
def test___init__(self): | ||
assert Transform() | ||
|
||
def test__check_inputs(self): | ||
with pytest.raises(NotImplementedError) as _: | ||
Transform()._check_inputs([]) | ||
|
||
def test__get_params(self): | ||
assert True | ||
|
||
def test__transform(self): | ||
with pytest.raises(NotImplementedError) as _: | ||
Transform()._transform(None, {}) | ||
|
||
def test__transformables(self): | ||
assert True | ||
|
||
def test_extra_repr(self): | ||
assert True | ||
|
||
def test_forward(self): | ||
assert True |