-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
febf68f
commit e797ada
Showing
3 changed files
with
15 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
"""Test that we can load the PhotoSync class with related libraries. | ||
This services Instagram sync, which is likely obsolete, but running | ||
freezing-sync-photos was bombing so this test makes sure that | ||
the libraries needed are all in place.""" | ||
|
||
from freezing.sync.data.photos import PhotoSync | ||
|
||
|
||
def test_phtosync_instantiation(): | ||
ps = PhotoSync() | ||
assert ps is not None |