def test_non_major_school_returns_name_for_abbreviation(self): text = ('<td class="left " data-stat="opp_name">' 'City College of New York</td>') game_data = pq(text) game = Game(game_data) assert game.opponent_abbr == 'City College of New York'
def setup_method(self, *args, **kwargs): flexmock(Game) \ .should_receive('_parse_game_data') \ .and_return(None) self.game = Game(None)
def test_non_major_school_returns_non_dI_for_conference(self): game_data = pq('<td class="left " data-stat="conf_abbr"></td>') game = Game(game_data) assert game.opponent_conference == NON_DI