FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sqlobject/sqlobject/tests/test_comparison.py at master · sqlobject/sqlobject · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
sqlobject
/
sqlobject
Public
Notifications
You must be signed in to change notification settings
Fork
26
Star
156
Code
Issues
2
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
sqlobject
/
sqlobject
/
tests
/
test_comparison.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
24 lines (18 loc) · 517 Bytes
Breadcrumbs
sqlobject
/
sqlobject
/
tests
/
test_comparison.py
Copy path
File metadata and controls
24 lines (18 loc) · 517 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from
sqlobject
import
SQLObject
from
sqlobject
.
tests
.
dbtest
import
setupClass
class
SOTestComparison
(
SQLObject
):
pass
def
test_eq
():
setupClass
(
SOTestComparison
,
force
=
True
)
t1
=
SOTestComparison
()
t2
=
SOTestComparison
()
SOTestComparison
.
_connection
.
cache
.
clear
()
t3
=
SOTestComparison
.
get
(
1
)
t4
=
SOTestComparison
.
get
(
2
)
assert
t1
.
id
==
t3
.
id
assert
t2
.
id
==
t4
.
id
assert
t1
is
not
t3
assert
t2
is
not
t4
assert
t1
==
t3
assert
t2
==
t4
assert
t1
!=
t2
Back
|
FazBrowse Home
|
New Git URL