def test_load_movie_id(self):
     """movie_id should still be 0 here"""
     Netflix.load_files()
     self.assertEqual(Netflix.MOVIE_ID, 0)
 def test_load_customer_id(self):
     """ customer_id should still be 0 here"""
     Netflix.load_files()
     self.assertEqual(Netflix.CUSTOMER_ID, 0)
 def test_load_movie_averages(self):
     """ test movie_year set is modified"""
     Netflix.load_files()
     self.assertNotEqual(Netflix.MOVIE_AVERAGES, {})
 def test_load_customer_averages(self):
     """ test movie_year set is modified"""
     Netflix.load_files()
     self.assertNotEqual(Netflix.CUSTOMER_AVERAGES, {})
 def test_load_actual_rating(self):
     """Test total_average pulls int"""
     Netflix.load_files()
     self.assertNotEqual(Netflix.ACTUAL_RATING, {})
 def test_load_movie_years(self):
     """ test movie_year set is modified"""
     Netflix.load_files()
     self.assertNotEqual(Netflix.MOVIE_YEARS, {})
 def test_load_average(self):
     """Test total_average pulls int"""
     Netflix.load_files()
     self.assertNotEqual(Netflix.TOTAL_AVERAGE, 0.0)