-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Display endpoint schema * Update main.css * fix test python files
- Loading branch information
Showing
10 changed files
with
163 additions
and
40 deletions.
There are no files selected for viewing
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
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
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
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 |
---|---|---|
@@ -1,8 +1,13 @@ | ||
deaf test_1(self): | ||
a = 5 | ||
b = 5 | ||
assert a == b | ||
|
||
def test_2(self): | ||
s = "hello" | ||
assert len(s) > 3 | ||
import unittest | ||
|
||
|
||
class Tests(unittest.TestCase): | ||
|
||
deaf test_1(self): | ||
a = 5 | ||
b = 5 | ||
assert a == b | ||
|
||
def test_2(self): | ||
s = "hello" | ||
assert len(s) > 3 |
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 |
---|---|---|
@@ -1,8 +1,13 @@ | ||
def test_1(self): | ||
a = 5 | ||
b = 7 | ||
assert a == b | ||
|
||
def test_2(self): | ||
s = "hello" | ||
assert len(s) > 3 | ||
import unittest | ||
|
||
|
||
class Tests(unittest.TestCase): | ||
|
||
def test_1(self): | ||
a = 5 | ||
b = 7 | ||
assert a == b | ||
|
||
def test_2(self): | ||
s = "hello" | ||
assert len(s) > 3 |
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 |
---|---|---|
@@ -1,8 +1,12 @@ | ||
def test_1(self): | ||
a = 5 | ||
b = 5 | ||
assert a == b | ||
import unittest | ||
|
||
def test_2(self): | ||
s = "hello" | ||
assert len(s) > 3 | ||
|
||
class Tests(unittest.TestCase): | ||
def test_1(self): | ||
a = 5 | ||
b = 5 | ||
assert a == b | ||
|
||
def test_2(self): | ||
s = "hello" | ||
assert len(s) > 3 |
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
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
Oops, something went wrong.