2014-09-25 92 views
0

我在Django tutorial 後面收到錯誤,無法弄清楚我做了什麼改變。任何人都可以看到下面的代碼和我的代碼之間的區別?關鍵字參數'question_text'的多個值

import datetime 

from django.utils import timezone 
from django.test import TestCase 
from django.core.urlresolvers import reverse 

from polls.models import Question 

class QuestionMethodTests(TestCase): 

    def test_was_published_recently_with_future_question(self): 
     """ 
     was_published_recently() should return False for questions whose 
     pub_date is in the future 
     """ 
     time = timezone.now() + datetime.timedelta(days=30) 
     future_question = Question(pub_date=time) 
     self.assertEqual(future_question.was_published_recently(), False) 

    def test_was_published_recently_with_old_question(self): 
     """ 
     was_published_recently() should return False for questions whose 
     pub_date is older than 1 day 
     """ 
     time = timezone.now() - datetime.timedelta(days=30) 
     old_question = Question(pub_date=time) 
     self.assertEqual(old_question.was_published_recently(), False) 

    def test_was_published_recently_with_recent_question(self): 
     """ 
     was_published_recently() should return True for questions whose 
     pub_date is within the last day 
     """ 
     time = timezone.now() - datetime.timedelta(hours=1) 
     recent_question = Question(pub_date=time) 
     self.assertEqual(recent_question.was_published_recently(), True) 


class QuestionViewTests(TestCase): 
    def create_question(question_text, days): 
     """ 
     Creates a question with the given `question_text` published the given 
     number of `days` offset to now (negative for questions published 
     in the past, positive for questions that have yet to be published). 
     """ 
     time = timezone.now() + datetime.timedelta(days=days) 
     return Question.objects.create(question_text=question_text, 
           pub_date=time) 

    def test_index_view_with_no_questions(self): 
     """ 
     If no questions exist, an appropriate message should be displayed. 
     """ 
     response = self.client.get(reverse('polls:index')) 
     self.assertEqual(response.status_code, 200) 
     self.assertContains(response, "No polls are available.") 
     self.assertQuerysetEqual(response.context['latest_question_list'], []) 

    def test_index_view_with_a_past_question(self): 
     """ 
     Questions with a pub_date in the past should be displayed on the 
     index page 
     """ 
     self.create_question(question_text="Past question.", days=-30) 
     response = self.client.get(reverse('polls:index')) 
     self.assertQuerysetEqual(
      response.context['latest_question_list'], 
      ['<Question: Past question.>'] 
     ) 

    def test_index_view_with_a_future_question(self): 
     """ 
     Questions with a pub_date in the future should not be displayed on 
     the index page. 
     """ 
     self.create_question(question_text="Future question.", days=30) 
     response = self.client.get(reverse('polls:index')) 
     self.assertContains(response, "No polls are available.", 
          status_code=200) 
     self.assertQuerysetEqual(response.context['latest_question_list'], []) 

    def test_index_view_with_future_question_and_past_question(self): 
     """ 
     Even if both past and future questions exist, only past questions 
     should be displayed. 
     """ 
     self.create_question(question_text="Past question.", days=-30) 
     self.create_question(question_text="Future question.", days=30) 
     response = self.client.get(reverse('polls:index')) 
     self.assertQuerysetEqual(
      response.context['latest_question_list'], 
      ['<Question: Past question.>'] 
     ) 

    def test_index_view_with_two_past_questions(self): 
     """ 
     The questions index page may display multiple questions. 
     """ 
     self.create_question(question_text="Past question 1.", days=-30) 
     self.create_question(question_text="Past question 2.", days=-5) 
     response = self.client.get(reverse('polls:index')) 
     self.assertQuerysetEqual(
      response.context['latest_question_list'], 
      ['<Question: Past question 2.>', '<Question: Past question 1.>'] 
     ) 

完全錯誤: enter image description here

+0

什麼是錯誤?請發佈錯誤和回溯的描述。 – mhawke 2014-09-25 15:06:40

+0

希望你能看到錯誤確定。 – Jon 2014-09-25 15:08:36

回答

2

create_question是一個實例方法,它應該有一個self作爲第一個參數:

def create_question(self, question_text, days): 
        ^^^^ 

,或者將其定義爲靜態方法或類方法,如果你不需要訪問實例屬性。

@staticmethod 
def create_question(question_text, days): 
    ... 
2

你的方法:

def create_question(question_text, days): 

需求self作爲第一個參數。該方法將以實例作爲第一個參數進行調用,如果您嘗試傳遞具有相同名稱的另一個參數,則會收到錯誤消息。

即使用

def create_question(self, question_text, days): 

代替。

相關問題