forked from AdaGold/viewing-party
-
Notifications
You must be signed in to change notification settings - Fork 29
AdaC22_phoenix_Marjana_Khatun #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
marjanak
wants to merge
15
commits into
Ada-C22:main
Choose a base branch
from
marjanak:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
5e22bbb
made changes
marjanak 34d519c
done wave2 part1
marjanak 28d7f99
Done wave2 part2
marjanak 87e3518
made changes
marjanak 9450e67
made changes
marjanak e4a98a8
made changes
marjanak 1e582e5
done wave3
marjanak 00bc600
Done with wave 4
marjanak 28ddf27
Wave 5
marjanak 9f294f4
Made some changes
marjanak a9ec5f2
Done wave 5
marjanak 36403e2
Done
marjanak b9f68f4
Done
marjanak 5823dfb
Done
marjanak 5d4e355
Completed all the test asseertions
marjanak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
from viewing_party.party import * | ||
from tests.test_constants import * | ||
|
||
@pytest.mark.skip() | ||
#@pytest.mark.skip() | ||
def test_new_genre_rec(): | ||
# Arrange | ||
sonyas_data = clean_wave_5_data() | ||
|
@@ -17,7 +17,7 @@ def test_new_genre_rec(): | |
assert FANTASY_4b in recommendations | ||
assert sonyas_data == clean_wave_5_data() | ||
|
||
@pytest.mark.skip() | ||
#@pytest.mark.skip() | ||
def test_new_genre_rec_from_empty_watched(): | ||
# Arrange | ||
sonyas_data = { | ||
|
@@ -38,7 +38,7 @@ def test_new_genre_rec_from_empty_watched(): | |
# Assert | ||
assert len(recommendations) == 0 | ||
|
||
@pytest.mark.skip() | ||
#@pytest.mark.skip() | ||
def test_new_genre_rec_from_empty_friends(): | ||
# Arrange | ||
sonyas_data = { | ||
|
@@ -52,13 +52,17 @@ def test_new_genre_rec_from_empty_friends(): | |
} | ||
] | ||
} | ||
# Act | ||
recommendations = get_new_rec_by_genre(sonyas_data) | ||
|
||
raise Exception("Test needs to be completed.") | ||
#raise Exception("Test needs to be completed.") | ||
# ********************************************************************* | ||
# ****** Complete the Act and Assert Portions of these tests ********** | ||
# ********************************************************************* | ||
|
||
@pytest.mark.skip() | ||
# Assert | ||
assert len(recommendations) == 0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice assertion! |
||
assert recommendations == [] | ||
#@pytest.mark.skip() | ||
def test_unique_rec_from_favorites(): | ||
# Arrange | ||
sonyas_data = clean_wave_5_data() | ||
|
@@ -72,7 +76,7 @@ def test_unique_rec_from_favorites(): | |
assert INTRIGUE_2b in recommendations | ||
assert sonyas_data == clean_wave_5_data() | ||
|
||
@pytest.mark.skip() | ||
#@pytest.mark.skip() | ||
def test_unique_from_empty_favorites(): | ||
# Arrange | ||
sonyas_data = { | ||
|
@@ -94,7 +98,7 @@ def test_unique_from_empty_favorites(): | |
# Assert | ||
assert len(recommendations) == 0 | ||
|
||
@pytest.mark.skip() | ||
#@pytest.mark.skip() | ||
def test_new_rec_from_empty_friends(): | ||
# Arrange | ||
sonyas_data = { | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This confirms that the data we input into the test
movie_to_watch
holdsHORROR_1
, but we aren't looking inside the lists that were changed to confirm the elements there are the movie dictionaries that we expect. How could we inspect the contents of theupdated_data["watchlist"]
andupdated_data["watched"]
lists?