コード例 #1
0
    def test_conference_submissions(self):
        Node.remove()
        conference1 = ConferenceFactory()
        conference2 = ConferenceFactory()
        # Create conference nodes
        create_fake_conference_nodes(
            3,
            conference1.endpoint,
        )
        create_fake_conference_nodes(
            2,
            conference2.endpoint,
        )

        url = api_url_for('conference_submissions')
        res = self.app.get(url)
        assert_equal(len(res.json['submissions']), 5)
コード例 #2
0
    def test_conference_submissions(self):
        Node.remove()
        conference1 = ConferenceFactory()
        conference2 = ConferenceFactory()
        # Create conference nodes
        create_fake_conference_nodes(
            3,
            conference1.endpoint,
        )
        create_fake_conference_nodes(
            2,
            conference2.endpoint,
        )

        url = api_url_for('conference_submissions')
        res = self.app.get(url)
        assert_equal(len(res.json['submissions']), 5)
コード例 #3
0
 def clear(self):
     Node.remove()
コード例 #4
0
 def tearDown(self):
     super(TestRegistrationFiltering, self).tearDown()
     Node.remove()
コード例 #5
0
 def tearDown(self):
     OsfTestCase.tearDown(self)
     Node.remove()
コード例 #6
0
 def tearDown(self):
     NodeLog.remove()
     Node.remove()
コード例 #7
0
ファイル: test_views.py プロジェクト: rdhyee/osf.io
 def tearDown(self):
     super(TestUserRoutesNodeRoutes, self).tearDown()
     Node.remove()
コード例 #8
0
ファイル: test_views.py プロジェクト: jeffreyliu3230/osf.io
 def tearDown(self):
     ApiTestCase.tearDown(self)
     Node.remove()
コード例 #9
0
 def tearDown(self):
     super(TestPreprintList, self).tearDown()
     Node.remove()
     PreprintService.remove()
コード例 #10
0
 def tearDown(self):
     super(TestPreprintFiltering, self).tearDown()
     Node.remove()
コード例 #11
0
 def tearDown(self):
     super(CitationsNodeTestCase, self).tearDown()
     Node.remove()
     User.remove()
コード例 #12
0
ファイル: test_preprint_list.py プロジェクト: baylee-d/osf.io
 def tearDown(self):
     super(TestPreprintFiltering, self).tearDown()
     Node.remove()
コード例 #13
0
ファイル: test_preprint_list.py プロジェクト: baylee-d/osf.io
 def tearDown(self):
     super(TestPreprintList, self).tearDown()
     Node.remove()
     PreprintService.remove()
コード例 #14
0
ファイル: test_views.py プロジェクト: rohan-bajaj/osf.io
 def tearDown(self):
     super(TestUserDetail, self).tearDown()
     Node.remove()
コード例 #15
0
ファイル: test_views.py プロジェクト: rohan-bajaj/osf.io
 def tearDown(self):
     super(TestUserNodes, self).tearDown()
     Node.remove()
コード例 #16
0
ファイル: test_views.py プロジェクト: jinluyuan/osf.io
 def tearDown(self):
     ApiTestCase.tearDown(self)
     Node.remove()
コード例 #17
0
 def tearDown(self):
     super(TestNodeForkCreate, self).tearDown()
     Node.remove()
コード例 #18
0
 def tearDown(self):
     super(TestInstitutionList, self).tearDown()
     Node.remove()
コード例 #19
0
 def tearDown(self):
     super(TestNodeForkCreate, self).tearDown()
     Node.remove()
コード例 #20
0
 def tearDown(self):
     super(TestInstitution, self).tearDown()
     Node.remove()
コード例 #21
0
 def tearDown(self):
     super(TestUserRoutesNodeRoutes, self).tearDown()
     Node.remove()
コード例 #22
0
 def clear(self):
     Node.remove()
コード例 #23
0
 def tearDown(self):
     Node.remove()
コード例 #24
0
 def tearDown(self):
     super(TestRegistrationForkCreate, self).tearDown()
     Node.remove()
コード例 #25
0
 def tearDown(self):
     super(TestRegistrationList, self).tearDown()
     Node.remove()
コード例 #26
0
 def tearDown(self):
     super(TestRegistrationFiltering, self).tearDown()
     Node.remove()
コード例 #27
0
 def tearDown(self):
     super(TestMigrateForks, self).tearDown()
     Node.remove()
     responses.stop()
     responses.reset()
     piwik_cache._cache = None
コード例 #28
0
 def tearDown(self):
     OsfTestCase.tearDown(self)
     Node.remove()
コード例 #29
0
 def tearDown(self):
     super(TestRegistrationList, self).tearDown()
     Node.remove()
コード例 #30
0
ファイル: test_citations.py プロジェクト: 545zhou/osf.io
 def tearDown(self):
     super(CitationsNodeTestCase, self).tearDown()
     Node.remove()
     User.remove()